November 13, 2009

Feedback with sharepoint Blog template

1. Site Level..Site Settings.
2. Sites and Workspaces.
3. Create
4. Select Collaboration Blog template
5. Go to Site Actions---Navigation for Feedback site.
6. Global: Display the Same Navigation items as the parent site.
7. Current: Display the Same Navigation items as the parent site.
8. Delete all folders in Navigation.
9. Go To site action..Global navigation[Main Site]
10. Add Heading and Set Audience.
11. Add Links to that Folder.
Note: Url shud be Relative like /sites/....etc
12. Get Urls from New Post with redirect to all posts.
13. All Posts.aspx...Remove unnecessary Web Parts
14. New Post.aspx....Remove unnecessary web parts
15. default.aspx.....Remove unnecessary web parts
16. Click on any post and edit the page.
17. Modify Shared web part for the list.
18. Edit the Current View and Uncheck what all we dont need.
19. Same in Default.aspx
20. For List...Settings..List Settings.
21. Versioning Settings and set the required content approval.
22. Advanced Settings and set Read Access to Only their Own
and Edit access to Only Their Own.
23. Permissions for this list.
24. To create one new permission level..click People and groups for the main site.
25. Click Site Permissions
26. Settings....Permission Levels.
27. Edit Permission Levels
28. Add a Permission level
29. Check...
List Permission: Add Items,Edit Items, View Items, Open Items.
Site Permission: View Pages,Open,Edit Personal Info
Personal Permission: Check ALL
30. Then Go To List.
31. Settings...List Settings...Permission for the list.
32. Assign our new permission level to the desired groups.
33. Hide any Columns from View in the list by clicking on the column from list settings.
34. To Hide any rows from the NewpOst.aspx, Open Sharepoint Designer.
35. Access Windows auth Url and open Our sites and workspace.
36. Lists...Posts...NewPost.aspx...Check Out.
37. After The Code Block
</WebPart>
</WebPartPages:ListFormWebPart>
</ZoneTemplate></WebPartPages:WebPartZone>
<IMG SRC="/_layouts/images/blank.gif" width=590 height=1 alt="">
</td>
</tr>
</table>
38. Add Code Block Before </asp:Content>
<script language="javascript" type="text/javascript">
_spBodyOnLoadFunctionNames.push("hideRows");
function hideRows()
{
var pageTables = document.getElementsByTagName('table');
var cName = null;
var formTables = null;
for(var i=0; i < pageTables.length; i++){
cName = pageTables[i].className;
if (cName == "ms-formtable"){
formTables = pageTables[i];
}
}
var rows = formTables.rows;
rows[rows.length-2].style.display = "none";
rows[rows.length-3].style.display = "none";

}
</script>39. Check In or Publish.
40. IIS Rest Probably and Check the Site.

No comments:

SonarQube with Jenkins Setup using Docker Images

https://funnelgarden.com/sonarqube-jenkins-docker/  https://medium.com/@hakdogan/an-end-to-end-tutorial-to-continuous-integration-and-con...