editor options, add item to recordset (not placeholder)
editor options, add item to recordset (not placeholder)
I have an options list in my editor which is populated from ajax/json
i want to add an extra label/value pair to my list so that a row being edited can have this value de-selected by the user
the placeholder works fine for create, but does not appear on my list when in edit mode
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Try also using the
placeholderValue
option of theselect
field type. It could be set tonull
, or an empty string or whatever you need. That option provides the ability to be able to select the placeholder option.Allan
hmm, i tried that.
on records which had no pre selected value, this was the value displayed, but it was not available to select.
i will try and get a demo uploaded asap
Oops - sorry, I forgot the
placeholderDisabled
option:That will fix it.
Allan
it does !
perfect.
Many thanks