When using GWT SuggestBox, the search results are usually displayed in a <table>
. Each result is contained within its own <td>
element, causing them to appear stacked on top of each other, like this:
I would prefer to have the results shown side-by-side. Since each result is in a <td>
element, I am curious about how to make them display inline.
It would be great to present the search results in a grid layout (similar to StackOverflow's tag suggestion widget when composing a question):
Rather than a standard list format.
Any suggestions or ideas?