Any jquery code to change the default (None) in my SharePoint dropdown control.

It does not appear that (None) is actually my default as it does not really send (None).

I'd like to change it to (Please Select).

Thanks.

link|improve this question

61% accept rate
Is (None) always the first item in your dropdown control? – Frédéric Hamidi Aug 11 '11 at 20:07
yes. Something SharePoint forces on the rendered control. None with a value of nothing. thanks. – cyberpine Aug 12 '11 at 18:57
feedback

1 Answer

up vote 3 down vote accepted

This works: http://jsfiddle.net/gilly3/F7PPK/

$("#mySelect option:eq(0)").text("Please Select").val("What you want sent here")
link|improve this answer
Thanks, but tried $('select[title$=Issue Type] options:eq(0)').text("Please Select").val(""); and $("#Issue_x0020_Type options:eq(0)").text("Please Select").val(""); to get to this: <SharePoint:FormField runat="server" id="ff2{$Pos}" ControlMode="New" FieldName="Issue_x0020_Type" __designer:bind="{ddwrt:DataBind('i',concat('ff2',$Pos),'Value','ValueChanged','I‌​D',ddwrt:EscapeDelims(string(@ID)),'@Issue_x0020_Type')}"/> with no luck. I know this found it $('select[title$=Issue Type]').change(function(){ – cyberpine Aug 11 '11 at 20:45
Rendered code looked like this: <nobr>Issue Type</nobr></H3></td><td width="400px" valign="top" class="ms-formbody"><span dir="none"><select name="ctl00$PlaceHolderMain$g_44df98f7_f371_4b1c_aacc_d8ee696a638f$ff2_1$ctl00$L‌​ookup" id="ctl00_PlaceHolderMain_g_44df98f7_f371_4b1c_aacc_d8ee696a638f_ff2_1_ctl00_Loo‌​kup" title="Issue Type"> <option selected="selected" value="0">(None)</option> – cyberpine Aug 11 '11 at 20:51
@cyberpine - typo in my selector (corrected above). It should be singular option, not options. Sorry! Try now. – gilly3 Aug 11 '11 at 20:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.