Using smartgwtpower2.5 nightly build, gwt 2.3.0. I've defined the valueMap in the .ds.xml file.
Then in the java code I create the listgrid and create a listgridfield for each field. For the field Blah I set multiple to true;
I don't set the valueMap in the java code and I don't call fetchData(), I just have auto fetch to true. What do I need to do to get this to work?
Code:
<field name="Blah" type="text"> <valueMap> <value>A<value> <value>B<value> <value>C<value> </valueMap> </field>
Code:
listGridField.setMultiple(true);
Comment