ColdFusion CFLayout does not wotk with cfif? -
i'm trying seems both of included templates being shown on page. it's cfif cfelse being ignored:
<cflayout type="tab" name="grouptab" width="910" height="560"> <cflayoutarea name="issuestab" selected="#isselected#" title="softwareissues" style="height:100%"> <br> <cfif isdefined("url.item")> <cfinclude template ="addnew.cfm> <cfelse> <cfinclude template="issues.cfm"> </cfif> </cflayoutarea> </cflayout>
can't cflayout? i'm working within scope of iframe. if cflayout not allow using cfif cfelse there work around?
ifelse condition working cflayout
you have forgot " @ end of file name
your <cfinclude template ="addnew.cfm>
correct 1 <cfinclude template ="addnew.cfm">
Comments
Post a Comment