Skip to main content

Posts

Showing posts from June, 2017

Filter and Paging For SharePoint Library

Create Calculated Column "FN" Formula =UPPER(LEFT([Title])) Edit  all items view page -> add the following script in Script editor. <script type="text/javascript">     function qs(paramName) {         var args = document.location.search.substring(1).split("&");         for (j = 0; j < args.length; j++) {             nameValues = args[j].split("=");             if (nameValues[0] == paramName) return nameValues[1];         }         return null;     }     var filterField = "FN";     var filterValuesDelimiter = " - ";     var filterValues = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X...

SharePoint 2013 Tab Pages

Tab-Pages : http://www.ashokraja.me/post/Easy-method-to-convert-a-SharePoint-2013-Content-Editor-WebPart-into-Tab-Pages.aspx http://www.ashokraja.me/post/Tab-Pages-WebPart-in-SharePoint-2013-based-on-jQuery-Easy-Tabs-without-combining-multiple-web-parts.aspx

CSS Effects & Animation

Gradient Effect using CSS https://testdrive-archive.azurewebsites.net/Graphics/CSSGradientBackgroundMaker/Default.html Image Roll Over Effect http://aceinfowayindia.com/blog/ace-tuts/css-rollover.html CSS Animations http://www.the-art-of-web.com/css/css-animation/ CSS: border-radius http://www.the-art-of-web.com/css/border-radius/