Hello, one of my columns is formatted as this:
$col[“edittype”] = “select”;
$col[“formatter”] = “select”;
$col[“editoptions”][“value”] = “10:$10;20:$20;30:$30;40:$40;”;
This only allows me to select 10, 20, 30 or 40. ¿How can I give the user choice of either choose one from the list or write a custom value?
Something like this:
https://stackoverflow.com/questions/5650457/html-select-form-with-option-to-enter-custom-value
Thanks,
Manuel Torres
2 Answers
Working demo here: https://gist.github.com/d28ef92ebf210cf0c0b6d582b1b59364
Line 66,70
Your Answer