Hi Guys, I'm currently creating an database query viewer, and I'm investigating ways of displaying the data in a way that makes all the dev's happy.
Basically my problem is this: I can't use a grid or dataview to my knowledge because I need to display both images and text in the same rows/columns also I need things like row span and col span. The code I am working with is actually some old plain GWT code that used a flextable to do the job, now I'm trying to migrate as much as possible to gwt-ext for obvious reasons, ease of user interaction for one. So I figured I could do a similar job with a table panel like in the sample on the demo page. I have quite a major sticking point though, that being that I don't know the dimensions of the panels I am trying to insert into table because I don't know what data will be returned to them until the query is run. Now if i insert for example a standard label into a row or column on the table panel then all is ok because the column adjusts its size accordingly, but this isn't the case if I put a label inside a panel inside a 'cell'(I want to be able to put my returned data inside individual panels, to allow better control of the layout). Is it possible to get the surrounding panel to expand to the size of the label that is currently inside the panel? Because if the string is over a certain length with no size attributes defined in the panel it just chops off the right hand side of the label. Or..... Is there a far better way of going about this? Cheers Tom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GWT-Ext Developer Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/gwt-ext?hl=en -~----------~----~----~----~------~----~------~--~---
