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

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -