How to disable a Datefield and Timefield in GXT?
I have a added the datefield and timefiel开发者_开发百科d in ToolBar in my project. How to disable datefield in GXT.
Just use method disable;
dateField.disable();
you can also use dateField.setReadOnly(true);
精彩评论