How to show text not value using select (edit type) on grid load?
For example as below:
I want to show text "Red", "Blue", "Green"
But now on grid load , it shows value "1" ,"2" ,"3"
<select>
<option value="1"> Red </option>
<option value="2"> Blue </option>
<option value="3"> Green </option>
</select>
2 Answers
Your Answer