function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
aswanijagadesh1.397398535585991E12aswanijagadesh1.397398535585991E12 

how to change the column order in <apex:enhancedlist>?

Hai friends,
 i displayed account list view page in visual force page by using   <apex:enhancedlist>
like this

<apex:page>
    <apex:enhancedlist type="Account" height="730" customizable="false" rowsPerPage="25" Listid="00B90000006FRvh" /> 
</apex:page>

shall i change the column order in this visual force page please suggest me urgent

Sonam_SFDCSonam_SFDC
If you set customizable="true" you give the user the option to change the column order:

Attribute:
customizable 
Boolean 
A Boolean value that specifies whether the list can be customized by the current user. If not specified, the default value is true. If this attribute is set to false, the current user will not be able to edit the list definition or change the list name, filter criteria, columns displayed, column order, or visibility. However, the current user's personal preferences can still be set, such as column width or sort order.

reference:https://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_enhancedList.htm