I am trying to add a GWT canvas within a SmartGWT VLayout. It appears the SmartGWT/GWT canvas height defaults to a minimum of 100... no matter what I specify for the GWT canvas height.
What am I missing here?
Any help would be appreciated.
FYI, I am running SmartGWT v2.1 with GWT v2.0.3. The issue appears browser independent, as I have tried this on Safari and Firefox.
Here is an example of code:
[CODE]
VLayout layout = new VLayout();
layout.setWidth100();
layout.setHeight100();
gwt.canvas.client.Canvas gwtCanvas = new gwt.canvas.client.Canvas(300, 24);
layout.addMember(gwtCanvas);
[\CODE]
What am I missing here?
Any help would be appreciated.
FYI, I am running SmartGWT v2.1 with GWT v2.0.3. The issue appears browser independent, as I have tried this on Safari and Firefox.
Here is an example of code:
[CODE]
VLayout layout = new VLayout();
layout.setWidth100();
layout.setHeight100();
gwt.canvas.client.Canvas gwtCanvas = new gwt.canvas.client.Canvas(300, 24);
layout.addMember(gwtCanvas);
[\CODE]
Comment