Pretty self-explanatory. I want to just have the combo box without any text outside of it. I just want the physical box.
However, maybe there's a better/smarter way to do what I'm wanting to do that might avoid this entirely. I have a map of values, essentially. In a ListGrid, for each row, I have one column as the key and another column as a combo box of the values which the user can select. I then use the combination of these values to add to a search query.
Right now, I can set the title to ""开发者_运维问答 but that still leaves some spaces and the colon and that's kind of ugly. I've scanned the long method list a few times but don't see anything that might help me out.
Any ideas?
Use setShowTitle(false)
, which is described this way "Should we show a title cell for this formItem?". It is common method for all form items.
精彩评论