Hi,
How can I do readonly an input inside a toolbar?
I read the documentation but I can’t find anything about that.
Thank you.
Hi,
How can I do readonly an input inside a toolbar?
I read the documentation but I can’t find anything about that.
Thank you.
Hi,
public API doesn’t provide such a possibility. You may use the following method:
toolbar.objPull[toolbar.idPrefix+inputId].obj.firstChild.readOnly = true;
Where inputId is the id of “input” item.
That worked.
Thanks a lot.