Hi all, this is my source code:
<%@ Register Src="~/CMSWebParts/UserContributions/ContributionList.ascx" TagName="ContributionList" TagPrefix="uc1"%>
<%@ Register Src="~/CMSWebParts/UserContributions/EditContribution.ascx" TagName="EditContribution" TagPrefix="uc2"%>
<%@ Register Src="~/CMSWebParts/Viewers/Documents/cmsrepeater.ascx" TagName="cmsrepeater" TagPrefix="uc3"%>
<uc3:cmsrepeater runat="server" ID="repeaterNews" ClassNames="CMS.News" TransformationName="CMS.News.preview" SelectedItemTransformationName="CMS.News.default"/>
<uc1:ContributionList runat="server" ID="ContributionList" AllowedChildClasses="CMS.News" DisplayList="false" AllowUsers="Authenticated" ShowForDocumentTypes="CMS.MenuItem" CheckPermissions="false"/>
<uc2:EditContribution runat="server" ID="EditContribution" ShowForDocumentTypes="CMS.News" AllowUsers="DocumentOwner" AllowDelete="true" />
If I'm an adminstrator, everything is good. But when I create new user, user only create new document, can't edit, delete.
How do i do that?
Thank!