Hi,
Firstly I'm new to gowut and have no html experience (my background is in embedded computing) so apologies if this is a basic newbie question and for the following rather long description
I'm using go/gowut on an embedded ARM linux project to provide the device with a web accessible configuration/status page
I'm using a number of (nested) tables to present the configuration data to the user (see my rough proof of concept below)
I don't want the user to edit the configuration data directly (i.e. through cells containing text or list boxes) so the table only contains labels (and a button). Once a row is selected I populate a separate panel of components for them to do the actual editing.
So far everything is working OK - I'm adding labels to the cells and handling the label mouse over and click events to give me my row selection (through CompIdx on the event src)
The one problem I have is getting the label to be the same size as the cell (rather than the size of the text it contains) - this is leaving me with large gaps in my rows where I can't click or mouse over - I have to click directly on the label for this to work.
So, to the question - Can anyone tell me how I re-size a label to fit the cell or alternatively suggest another way to do row selection?
