Showing posts with label column width. Show all posts
Showing posts with label column width. Show all posts

Tuesday, January 13, 2015

CRM View custom Column width



For CRM view we can specify column width as


but sometime this width is not exactly matching with customer requirement.. Sometime we need one column width more than 300px.. but in the UI showing maximum 300 px width.



In this case we can easily increase / decrease column width.. but we need to follow some simple steps as follows

1. Export entity customization solution.
2. Open customization.xml file text/ xml / visual studio.
3.  Look for SavedQueries tag in xml for your entity.
4.  Insided SavedQueries you will see saved query for each view like Active, Inactive, Quick find, Advanced find etc. I am using Inactive view saved Query.

<savedquery>
<IsCustomizable>1</IsCustomizable>
<CanBeDeleted>0</CanBeDeleted>
<isquickfindquery>0</isquickfindquery>
<isprivate>0</isprivate>
<isdefault>0</isdefault>
<returnedtypecode>10058</returnedtypecode>
<savedqueryid>{88ee77ea-13cd-4148-a3b9-48975029efb4}</savedqueryid>
<layoutxml>
<grid name="resultset" object="10058" jump="new_name" select="1" icon="1" preview="1">
<row name="result" id="new_testid">
<cell name="new_name" width="300" />
<cell name="createdon" width="125" />
</row>
</grid>
</layoutxml>
<querytype>0</querytype>
<fetchxml>
<fetch version="1.0" mapping="logical">
<entity name="new_test">
<attribute name="new_testid" />
<attribute name="new_name" />
<attribute name="createdon" />
<order attribute="new_name" descending="false" />
<filter type="and">
<condition attribute="statecode" operator="eq" value="1" />
</filter>
</entity>
</fetch>
</fetchxml>
<IntroducedVersion>1.0.0.0</IntroducedVersion>
<LocalizedNames>
<LocalizedName description="Inactive Test" languagecode="1033" />
</LocalizedNames>
</savedquery>
view raw gistfile1.xml hosted with ❤ by GitHub


5. Column width is specified in layoutxml tag.
6. We need to modify only below section

<layoutxml>
<grid name="resultset" object="10058" jump="new_name" select="1" icon="1" preview="1">
<row name="result" id="new_testid">
<cell name="new_name" width="300" />
<cell name="createdon" width="125" />
</row>
</grid>
</layoutxml>
view raw gistfile1.xml hosted with ❤ by GitHub


7.  Change width of column as per requirement.

<cell name="new_name" width="500" />
<cell name="createdon" width="15" />
view raw gistfile1.xml hosted with ❤ by GitHub


8. Save customization.xml file
9. Import your solution file to CRM.
10. Publish your customization.. and now you will see the view columns with different width.