I must be doing something damn stupid here, but whatever I try I cannot get this to work.
I have a parent page which has a page include in it.
The XML snippet is here:
</template> <includepanel type="skuid" pagename="ViewEditAppraisal" module="" querystring="suppress_title=1&amp;appid={{$Model.Appraisal.data.0.Id}}" lazyload="true"> <renderconditions logictype="and"/> </includepanel>
I am passing a URL parameter called “suppress_title” and giving it a 1.
This drives a Render condition on the included page (which works fine when I load the page directly in the browser), but refuses to work through the page include!! What am I doing wrong?
Here is the relevant bit of XML for the included page. Incidentally, the {{}} parameter passes and works fine, it’s on the static (hardcoded) one that doesn’t work.
<pagetitle model="VAppraisal"> <maintitle>{{Appraisee__r.Name}}</maintitle> <subtitle>Appraisal Summary: {{Name}}</subtitle> <actions/> <renderconditions logictype="and"> <rendercondition type="fieldvalue" operator="!=" fieldmodel="VAppraisal" sourcetype="param" nosourcerowbehavior="deactivate" sourceparam="suppress_title" value="1" enclosevalueinquotes="true"/> </renderconditions> </pagetitle>
Sorry if this is a dumb question, but for the life of me, I can’t get what should be a simple thing to work!
Any help gratefully appreciated.
Brad