You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 19, 2025. It is now read-only.
Deployment should lead to <ParameterBinding Name="ID" Location="QueryString(ID)" />
but Comes out as <ParameterBinding Name="ID" Location="QueryString(ID)" />
After Deployment, no data from source view is shown in the destinaton view.
When I cross check with SharePoint-Designer I see the mentioned wrong Markup in the EditForm.
If I correct the Markup everything works as espected.
So, it seems that something is wrong with the Deployment.
Model used (CSOMProvisionService):
var webModelPages = SPMeta2Model.NewWebModel(webModel =>
{
webModel.AddList(Lists.GetAnalyseList(), list =>
{
list.AddHostListView(BuiltInListViewDefinitions.Lists.EditForm, listView =>
{
listView.AddXsltListViewWebPart(wpToDos);
});
});
});
provisionService.DeployWebModel(context, webModelPages);