Showing posts with label picklist. Show all posts
Showing posts with label picklist. Show all posts

Tuesday, February 5, 2008

An Awesome entry on filtering picklists

A much better way that the one included by MS

http://thecrmgrid.wordpress.com/2007/11/13/a-slightly-different-approach-to-dynamic-picklists/#more-12

Thank You!

Tuesday, November 20, 2007

Setting the color of a picklist option

//get the field
var list = crmForm.all.prioritycode;

var option = list.options[0]; //select the option to be coloured
option.style.backgroundColor = "#FF0000"; //Set the background color to red.
option.style.color = "#FFFFFF"; //Set the text color to white.