Error:You must specify a value for this required field July 14, 2012
Posted by juanpablo1manrique in SharePoint.trackback
Error:You must specify a value for this required field
Este error se presenta cuando se intenta modificar una página de Wiki desde el explorador, el origen de este error es el master.page
Correcto
- <h2 style=”visibility:hidden;”>
- <div style=”visibility:hidden;display:inline”>
- <asp:ContentPlaceHolder id=”PlaceHolderPageTitleInTitleArea” runat=”server” Visible=”true” />
- </div>
- </h2>
- <div tabindex=”0″ >
- <div style=”visibility:hidden;display:inline”>
- <asp:ContentPlaceHolder id=”PlaceHolderPageDescription” runat=”server” Visible=”true” />
- </div>
- </div>
Incorrecto
- <h2> <asp:ContentPlaceHolder id=”PlaceHolderPageTitleInTitleArea” runat=”server” Visible=”false” /></h2>
- <div tabindex=”0″ >
- <asp:ContentPlaceHolder id=”PlaceHolderPageDescription” runat=”server” Visible=”false” />
- </div>
Se debe evitar manipular la propiedad visible=”false” de todos los ContentPlaceHolder del master page
Other content placeholder’s in the v4.master MasterPage to be aware of:
PlaceHolderPageTitle | PlaceHolderAdditionalPageHead | PlaceHolderAdditionalPageHead |
PlaceHolderBodyAreaClass | PlaceHolderTitleAreaClass | PlaceHolderGlobalNavigation |
PlaceHolderTitleBreadcrumb | PlaceHolderGlobalNavigationSiteMap | PlaceHolderSiteName |
PlaceHolderPageTitleInTitleArea | PlaceHolderPageDescription | PlaceHolderSearchArea |
PlaceHolderTopNavBar | PlaceHolderHorizontalNav | PlaceHolderLeftNavBarDataSource |
PlaceHolderCalendarNavigator | PlaceHolderLeftActions | PlaceHolderLeftNavBarTop |
PlaceHolderLeftNavBar | PlaceHolderQuickLaunchTop | PlaceHolderQuickLaunchBottom |
PlaceHolderQuickLaunchBottomV3 | PlaceHolderQuickLaunchBottomV4 | PlaceHolderPageImage |
PlaceHolderTitleLeftBorder | PlaceHolderMiniConsole | PlaceHolderTitleRightMargin |
PlaceHolderTitleAreaSeparator | PlaceHolderNavSpacer | PlaceHolderLeftNavBarBorder |
PlaceHolderBodyLeftBorder | PlaceHolderMain | PlaceHolderBodyRightMargin |
PlaceHolderFormDigest | PlaceHolderUtilityContent | SPNavigation |
WSSDesignConsole |
[…] Error:You must specify a value for this required field […]