Manage New Icon Indicator for list items (DaysToShowNewIndicator) in SharePoint.


Hi,

Was looking into how long the new icon appears for a newly created list items in SharePoint.

The default is 2 days.

And this is configurable through DaysToShowNewIndicator property.

Powershell

http://www.deliveron.com/blog/post/Change-Settings-for-e2809cNewe2809d-Icon-in-SharePoint-2010-using-PowerShell.aspx

STSADM

http://technet.microsoft.com/en-us/library/cc287681(v=office.12).aspx

Programmatically

http://code-journey.com/2009/change-how-long-a-listitem-is-considered-a-new-item-setpropery-daystoshownewindicator/

Hope it helps.

Dynamics CRM 2013 Links


Donna Edwards's avatarDonna Edwards

The long awaited Dynamics CRM 2013 product is available Online and for OnPremise installations.  Microsoft did a great job with the product and I’m sure you’ll appreciate the many improvements and additions to the product.  Here are the links:

Microsoft Dynamics CRM Server 2013 (Online)

Microsoft Dynamics CRM Server 2013 (OnPremise)

Microsoft Dynamics CRM 2013 for Microsoft Office Outlook (Outlook Client)

Check out my Microsoft Curah article for the latest download updates.

In addition Microsoft Dynamics CRM 2011 Update Rollup 15 is also available.   As with any update rollup, read through the list of fixed items and determine if any address issues you are experiencing.  Install the Update Rollup in a development environment first, test it for a couple of weeks and then roll it into production.

Cheers

View original post

An object of the type Microsoft.SharePoint.Administration.SPWindowsServiceCredentialDeploymentJobDefinition named “windows-service-credentials-FIMSynchronizationService” already exists under the parent Microsoft.Office.Server.Administration.ProfileSynchronizationService named “FIMSynchronizationService”. Rename your object or delete the existing object in SharePoint 2013


Hi,

Got the below error while trying to change the Service Account for User Profile Service Application.

As the error suggests we need to delete the existing job definition to resolve this issue.

Open Central Administration à Monitoring

Select the service

Delete it

Now if we try changing the Service Account associated to the User Profile Synchronization Service it will work properly.

Hope it helps.

Change the font size of td in jqGrid


I was using the jqGrid (4.5.2) in one of my html web resources for CRM 2011. To adjust the font size of the td of the jqGrid table, we can set the value for the following style element in ui.jqgrid.css style sheet

Or we can using the following style in the html page where we are using the jqGrid


.ui-widget-content td {
font-size:1.1em;}

Hope it helps.

Connecting to SharePoint Online in Office 365 through a windows or console application


Hi,

Was looking for a way to connect to SharePoint online using CSOM through a windows application. Found this wonderful article that explains in details about the same.

http://www.wictorwilen.se/Post/How-to-do-active-authentication-to-Office-365-and-SharePoint-Online.aspx

It also provides us with a helper class name MsOnlineClaimsHelper that does all the heavy lifting for us.

MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper(https://xyz.com/sites/dev”, “x@y.onmicrosoft.com”,“pwd”);

Hope it helps.

Fixed – “A type named ’SP.Data.ListItem’ could not be resolved by the model. When a model is available, each type name must resolve to a valid type” error in SharePoint 2013.


Hi,

Was getting the above error while creating a listitem for a Tasks List using Rest interface in a SharePoint app.

Here we need to pass SP.Data.<ListName>ListItem i.e. ListEntityTypeFullName of the List.

We can get it using the following

<a href="https:///_api/web/lists/getbytitle(&#8221;)?$select=ListItemEntityTypeFullName”>https://<site>/_api/web/lists/getbytitle(‘<List Name>’)?$select=ListItemEntityTypeFullName

More details

http://msdn.microsoft.com/en-us/library/jj164022%28office.15%29.aspx#ListItems

Hope it helps.

Advertisements

Nishant Rana's Weblog

Everything related to Microsoft .NET Technology

Skip to content ↓