Posts

Showing posts from 2016

A simplest way to add Customize add form in your list

Image
Dear All,  Since long time i am trying to find this simple way, may time i did the same steps for infopath related item but never tried it with VS form it's too good and easy to add the custom VS form in your sharepoint list  A big thanks for original inventor  Regards 3art Technology Experts http://www.3art.tech

How to change the header column name or title in SharePoint view

Dear all If you want to change the sharepoint column name only in view the following script will work perfectly <script> (function () {     function preTaskFormRenderer(renderCtx) {        modifyColumns(renderCtx);         }     function modifyColumns(renderCtx)     {       var arrayLength= renderCtx.ListSchema.Field.length;         for (var i=0; i < arrayLength;i++)         {            if(renderCtx.ListSchema.Field[i].DisplayName == '[Your Comlumn Name 1]')              {                var newTitle= "[New Name]";                var linkTitleField = renderCtx.ListSchema.Field[i];                linkTitleField.DisplayName = newTitle;              }   if(renderCtx.ListSchema.Field[i].DisplayName == ''[Your Comlumn Name 2]')              {                var newTitle= "[New Name]";                var linkTitleField = renderCtx.ListSchema.Field[i];                linkTitleField.DisplayName = newTitle;          

SharePoint 2013 List Search Box or Small Search box is missing when added as web part on other page

Dear All,  Since long time, I tried to find the solution for " Small Search box for the list will hide once I save the page "  problem.  My scenario is like that  I have a list with the different views and i want to display this list with many different pages with respective views.  Once i add the web-part or app in to the page and click on "Display search box" the box appears but once i save the page it disappears.  What i already tried and it wasn't work 1)  I remove publishing service  2)  I tried in the team site instead of Publishing portal  3)  I check to place the web part in to the page  and so on ...  The problem is not with the web part or the list, but the problem is under the Page itSelf.... Solution SharePoint publishing pages are not supporting that small search box... How i get it i place this list webpart in to WIKI page and the search wasn't disappeared and make me a clue that instead of using the pages I

A very Good Video About SharePoint Desginer

Image
Dear All I hope the below video is really helping you for the SharePoint designer 2013 hidden features Regards 3art Technology Experts http://www.3art.tech

Update sharepoint user email by PS (SharePoint Power Shell Command)

Dear All, If you want to update the sharepoint register user email or any profile property please use the below command 1) Open the SharePoint Power shell command (Run as Administrator) 2) Place the below command and change the parameters  $web = get-spweb "SiteCollection URL" $user = $web.EnsureUser("domain\username") echo $user Set-SPUser -Identity $user -Email "email@yourdomain.com" -Web $web Same like that you can update any profile property if you like  3) Check your sharepoint profile now  if you want to learn more here is the reference URL http://alstechtips.blogspot.com/2015/09/sharepoint-2013-tip-edit-user-profile.html Regards 3art Technology Experts http://www.3art.tech