In my jqGrid I am defining editable column with edittype :'select'. I am using inline editing. I want to assign option element to this drop down with string
for example
1:SA<br>21;2:SH<br>22;3:GT<br>23
When I assign such string to value attribute of editoptions of this column I am getting option element in drop down as follows SA undefined undefined SH undefined undefined GT undefined undefined
Can anybody suggest me how to overcome this problem.
tag from server side string.Replace() which was causing
to get replaced as <BR>. So i tried it replacing from javascript which worked perfectly for me. Thanks For your support. – Shaggy Jan 20 '14 at 09:27