Hello,
We just installed the 'v8.3p_2013-02-03/Pro Deployment 2013-02-03' build to have a look at the current state of FF18 compatibility.
During our test cycle we had this issue popping up:
The 'onVisibilityChanged' method calls the 'autoFitFields' method on the grid.
The error which we get is '(TypeError): this.$26a is undefined'. When I look in the sources there are a few places where there is a null check on this variable, maybe there is one missing? We did not have this error popping up on our previous build ( v8.3p_2012-11-30/Pro Deployment (built 2012-11-30)).
Tested on FF 18.
Thanks for looking in to this.
We just installed the 'v8.3p_2013-02-03/Pro Deployment 2013-02-03' build to have a look at the current state of FF18 compatibility.
During our test cycle we had this issue popping up:
Code:
com.smartgwt.client.widgets.grid.ListGrid.autoFitFields(ListGrid.java) foo.bar.client.custom.editor.util.FooDropdownCanvas$9.onVisibilityChanged(FooDropdownCanvas.java:303)
The error which we get is '(TypeError): this.$26a is undefined'. When I look in the sources there are a few places where there is a null check on this variable, maybe there is one missing? We did not have this error popping up on our previous build ( v8.3p_2012-11-30/Pro Deployment (built 2012-11-30)).
Tested on FF 18.
Code:
final ListGrid grid = new ListGrid(); grid.setWidth100(); grid.setHeight100(); grid.setNormalCellHeight(CELLHEIGHT); grid.setCellHeight(CELLHEIGHT); grid.setAutoFitMaxRecords(20); grid.setAutoFitData(Autofit.BOTH); grid.setAutoFitFieldWidths(true); grid.setMargin(0); grid.setShowHeader(false); grid.setLeaveScrollbarGap(false); grid.setGenerateClickOnEnter(true); grid.setTabIndex(item.getTabIndex()); grid.setAutoFetchData(false); grid.setAlternateRecordStyles(false);
Comment