Hi,
I need to manually override the default fields width in FilterBuilder, but I have found only a partial solution.
For the field name picker I've found the setFieldPickerProperties method
but I still can't change the width of the remaining widgets (operator, value and so on) cause I've not found the setFieldPickerProperties counterpart.
I saw a similar request for SmartClient:
http://forums.smartclient.com/showthread.php?t=6425
How can I do the same using SmartGWT?
Should I use JSNI?
At client side I'm using
SmartClient Version: SC_SNAPSHOT-2010-10-11/LGPL Development Only (built 2010-10-11)
GWT 2.0.4
Firefox 3.6.10
Kind regards
Davide
I need to manually override the default fields width in FilterBuilder, but I have found only a partial solution.
For the field name picker I've found the setFieldPickerProperties method
Code:
final FormItem fieldPicker = new SelectItem (); fieldPicker.setWidth (200); filterBuilder.setFieldPickerProperties (fieldPicker);
I saw a similar request for SmartClient:
http://forums.smartclient.com/showthread.php?t=6425
How can I do the same using SmartGWT?
Should I use JSNI?
At client side I'm using
SmartClient Version: SC_SNAPSHOT-2010-10-11/LGPL Development Only (built 2010-10-11)
GWT 2.0.4
Firefox 3.6.10
Kind regards
Davide
Comment