- Posts: 38
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
And? What do you expect us to say?I had field that was a dropdown and it was working. I changed it to a text box and now it's not getting saved.
That is managed by our custom JS code. ....
We changed one field in this from a selectbox to a text box, and now that field is not getting saved to the results.
Yes exactly what i say : «You show a dropdown as a textbox ?» in javascript.LarryMartell wrote: That is not what I said. I said I had field that was a dropdown and it was working. I changed it to a text box and now it's not getting saved.
disable input are not send on server …LarryMartell wrote: The fields I fill in from my JS code I make disabled
Set a readonly attribute instead.The fields I fill in from my JS code I make disabled so the user cannot change them. That seems to be the issue. If I do not make them disabled they do get saved.
$('input.myClass').prop('readonly', true);