How can I reach and set readonly(or even disable) the field in a
grid's pagingToolbar, which can set the current page number? Its the
first textfield between the previous next button and the next button.

The pagesizefield is easy:

 pagingSizeField.setReadonly(false);
But it doesnt have an easy access like that...


If it would be a normal field., I put it on a formPanel and set all
readonly:

Field[] fields = FormPanel.getFields();
        for (int i = 0; i < fields.length; i++) {

            fields[i].setReadOnly(true);

        }
 But it cannot access the grids fields...


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to