-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
6Questions
-
4Replies
How to customize standard tab colors and Salesforce UI?
- Can we add multiple columns (currently it is 2) within a section while editing a page layout?
- Can we add sub-sections under a section? I mean a sub heading kind of stuff...
- Can we have different background colors for each section?
Thanks
-
- santhosh
- February 21, 2007
- Like
- 0
- Continue reading or reply
DateTime stamp mis-match in Salesforce UI
-
- santhosh
- February 08, 2007
- Like
- 0
- Continue reading or reply
How to list Contact Name using relationships from OpportunityContactRole object?
-
- santhosh
- January 26, 2007
- Like
- 0
- Continue reading or reply
Opportunity Stage PickList and Recort Type
Hello,
I am Afzal from Hyderabad, India.
I am getting all the picklists and picklist values for an opportunity based on the record type id. But for SalesStage picklist, I am unable to make out which picklist value is isWon or isClosed.
Any help on this, would be appreciated. Below is the source code I've written.
DataSet dsRet = new DataSet();
if(strRecordTypeID!=null && strRecordTypeID.Trim()!=""){
DescribeLayoutResult objDLR = MY_CUSTOM_CLASS.getDescribeLayout(strSFObjectName,objSfConnection);
foreach(RecordTypeMapping objRTM in objDLR.recordTypeMappings){if(strRecordTypeID==objRTM.recordTypeId){
foreach(PicklistForRecordType objPRT in objRTM.picklistsForRecordType){
DataTable dtRet = new DataTable(objPRT.picklistName);
dtRet.Columns.Add("label");
dtRet.Columns.Add("value");foreach(PicklistEntry objPE in objPRT.picklistValues){
if(objPE.active){
DataRow newRow = dtRet.NewRow();
newRow["label"] = objPE.label;
newRow["value"] = objPE.value;
dtRet.Rows.Add(newRow);}
}
dsRet.Tables.Add(dtRet);}
}
}
}
-
- santhosh
- November 27, 2006
- Like
- 0
- Continue reading or reply
editing the datagrid
please suggest me.
-
- santhosh
- January 03, 2006
- Like
- 0
- Continue reading or reply
binding a dropdown to a datagrid dynamically
how to bind a dropdown list box to a datagrid dynamically to display all the statuses?
-
- santhosh
- January 02, 2006
- Like
- 0
- Continue reading or reply
DateTime stamp mis-match in Salesforce UI
- santhosh
- February 08, 2007
- Like
- 0
- Continue reading or reply
How to list Contact Name using relationships from OpportunityContactRole object?
- santhosh
- January 26, 2007
- Like
- 0
- Continue reading or reply