SmartGWT v8.2p_2013-02-06/LGPL Development Only (built 2013-02-06)
Using IE9, tried in dev and regular mode
I'm having a weird issue. Let's say I have a part and it is part "1234abcd". I want to have my combo box hit the server when searching. The combo box is set up with valueField/displayField. It works fine until I enter 4 or more numbers into the combo box, then it changes its search criteria.
For instance, here are my server calls when searching for a part starting with 2572:
1)
2)
3)
I noticed that the request for call 3 comes from the ListGrid that the ComboBox is within. The first two calls come from isc_PickListMenu_1.
Any ideas?
Thanks,
Brian
Using IE9, tried in dev and regular mode
I'm having a weird issue. Let's say I have a part and it is part "1234abcd". I want to have my combo box hit the server when searching. The combo box is set up with valueField/displayField. It works fine until I enter 4 or more numbers into the combo box, then it changes its search criteria.
For instance, here are my server calls when searching for a part starting with 2572:
1)
Code:
<_constructor>AdvancedCriteria</_constructor> <criteria> <criterion> <fieldName>partNo</fieldName> <operator>iContains</operator> <value>25</value> </criterion> ...
Code:
<_constructor>AdvancedCriteria</_constructor> <criteria> <criterion> <fieldName>partNo</fieldName> <operator>iContains</operator> <value>257</value> </criterion> ...
Code:
<data> <id>2572</id> </data> ...
Any ideas?
Thanks,
Brian
Comment