I have a full page which calls a partial page. When the partial page loads all the controls on it are disabled. When previewing the partial page they come up editable as they should. Looking at the DOM after the partial page is loaded into the full page, I can see that in fact all of the controls that are part of the partial page have the disabled="disabled" attribute. There are no conditional disable setting or anything of the sort on the partial page, or on the partial page container on the full page.
Any thoughts?
Any thoughts?
RE: partial page controls all load as disabled
Can you provide some further details of the product and version and any key factors of the page?
There are some situations when BizFlow WebMaker thinks the page is in "ReadOnly" mode, so it disables all the field for BizFlow WebMaker pages?
If you have a look at the logs for the View Agent (Page Painter), see of the fields are not disabled after the rendering the page rule, and then changes to disabled when the make_page_read_only.xsl is processed?
RE: partial page controls all load as disabled
In addition check the following two field values before the page is rendered in the View Agent:
/mvc:eForm/mvc:Control/mvc:readOnly - Is it 'y' or 'true'
/mvc:eForm/mvc :D ata/WorkitemContext/Application/Updatable - Is it something else other than 'U'
RE: partial page controls all load as disabled
The issue was that there were two WorkitemContext coming into the partial page. One was basically unpopulated and causing this issue. I'm not sure why there were two, but I removed one and the issue is resolved.
RE: partial page controls all load as disabled
That would make sense. So, did you edit a Binding document to remove it? Has your page used more than one BizFlow Data Source?
here should not be two WICDetails in the document, so it is possible that some scenario accidently created a second copy.
Please provide any information you can.
RE: partial page controls all load as disabled
Yes I had to remove it from the bindings document. I didn't set up more than one bizflow datasource, so I don't know how the second copy manifested itself.