0
votes

I am using custom master page and installed the nintex forms 2013 in my sharepoint 2013 environment.

When I click on any New Item which contains the Nintex form getting below error.

The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases.

2
We would need some more information. What is special about your custom MasterPage? Apparently you have some code behind or custom controls on the page? Nintex doesn't really care about the MasterPage. You should also try asking your question on Nintex Connect as Stackoverflow is for programming related questions.Dennis G

2 Answers

4
votes

Fixed It...

Open custom master html file...

get this from header:

<!--SPM:<SharePoint:AjaxDelta id="DeltaSPWebPartManager" runat="server">-->
<!--SPM:<WebPartPages:SPWebPartManager runat="server"/>-->
<!--SPM:</SharePoint:AjaxDelta>-->

Cut it out...

go to the body part... find div with the id "s4-workspace" and paste the code before this div like this:

[...]
<!--SPM:<SharePoint:AjaxDelta id="DeltaSPWebPartManager" runat="server">-->
<!--SPM:<WebPartPages:SPWebPartManager runat="server"/>-->
<!--SPM:</SharePoint:AjaxDelta>-->
<div id="s4-workspace" class="s4-nosetwidth">
[...]

Hope this helps!

0
votes

Microsoft Support confirmed that this snippet belongs in the body.

It's put in the head by the code generated to produce a Minimal Master page, and that's confirmed as a bug.