Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
HiHow can I change the months on the top of the date picker to have a nemeric value first, i.e. (1) January, (2) February, (3) March .....Thanks Richard
In the "Javascript onload" event of add/edit page, enter the following code
$("#monthvalue_YOURDATEFIELDNAME_1 option[value!='']").each(function(month, value) { $(this).text("(" + (month+1) + ") " + $(this).text());});
Replace YOURDATEFIELDNAME with the name of the date field.