SmartGWT PRO v2.3 - registered user
GWT 2.0.4
Mozill Firefox 3.6.12
Hi all,
I have a problem about vertical alignment of custom components (shown in a blue frame) in a treeGrid. You can see it on attached picture.
I create components using next code :
	this a code for initializing treeGrid:
	
This is an error code:
WARN:DynamicForm:isc_DynamicForm_10:ignoring bad or negative top: NaN [enable 'sizing' log for stack trace]
Please help, is it a bug or?
					GWT 2.0.4
Mozill Firefox 3.6.12
Hi all,
I have a problem about vertical alignment of custom components (shown in a blue frame) in a treeGrid. You can see it on attached picture.
I create components using next code :
Code:
	
	@Override
		protected Canvas createRecordComponent(final ListGridRecord record, Integer colNum) {
...
Code:
	
	   treeGrid.setDataSource(propertiesDS);
   treeGrid.setShowRecordComponents(true);
   treeGrid.setShowRecordComponentsByCell(true);
   treeGrid.setLoadDataOnDemand(false);
   treeGrid.setCanEdit(false);
   treeGrid.setAutoFetchData(true);
   treeGrid.setAlternateRecordStyles(true);
  		//treeGrid.setRecordComponentPosition(EmbeddedPosition.WITHIN);
		 
   treeGrid.setRecordComponentPoolingMode(RecordComponentPoolingMode.DATA);
   treeGrid.setWidth100();
   treeGrid.setHeight100();
   
   TreeGridField nameField = new TreeGridField("name", "NAME", 200);
   TreeGridField valueField = new TreeGridField("value1","VALUE", 260);
   TreeGridField descriptionField = new TreeGridField("description", "DESCRIPTION");
   treeGrid.setFields(nameField, valueField, descriptionField);
This is an error code:
WARN:DynamicForm:isc_DynamicForm_10:ignoring bad or negative top: NaN [enable 'sizing' log for stack trace]
Please help, is it a bug or?
Comment