Hi, I have a similar problem. My aim is to have a component realy similar to SuggestBox of GWT not in the look but in the behavior.
The CoboBoxItem filter the suggest list starting from the first letter but I wish to filter the suggest list that could contain the filter letter in every part of the word. This is the behavior of the SuggestBox of GWT component.
The CanvasItem is easy to extend. So create you own and pass the gwt SuggestOracle to it. You do need to make the SuggestBoxPopup z-index very high. If not it falls behind the smart-gwt components.
The CanvasItem is easy to extend. So create you own and pass the gwt SuggestOracle to it. You do need to make the SuggestBoxPopup z-index very high. If not it falls behind the smart-gwt components.
I tried it. The element works perfectly but the tabIndex does not.
The DynamicForm automatically set the tabIndex for the elements: this does not work for that custom item.
I tried different solutions with no success.
Any idea how to solve the problem?
I can't believe that there is not a suggestBox in smartGWT.
ComboBox is different and I don't need it!
I've produced a suggestBox using smartGWT's ComboBoxItem loaded with data from RPC.
I'd rather stay away from GWT's SuggestBox and the css issues arising from this if possible.
So why not just use the existing smartGWT widget and just handle the laoding myself (or through DataSources)??
Comment