Hi,
we're using smartGWT version 2.4 and have a problem with showing components in listgrid's row.
We have a table with custom pager component and that table contains embedded components in rows (link), that table is constructed with following constructor:
when we fetch more data then default drawAheadRatio (1.4), so for example 50 rows, first 20 rows (1.4 ratio) have correctly rendered link in embedded component but others no, when I set drawAheadRatio to max value, then it's rendered correctly but all requests are duplicated, so when I call fetchData 2 requests are invoked to the server
what do you reccomend me?
thanks,
michal
we're using smartGWT version 2.4 and have a problem with showing components in listgrid's row.
We have a table with custom pager component and that table contains embedded components in rows (link), that table is constructed with following constructor:
Code:
this.setShowFilterEditor(true); this.setWidth100(); this.setAutoFetchData(false); this.setFixedRecordHeights(false); this.setWrapCells(true); this.setLeaveScrollbarGap(false); this.setAutoSaveEdits(false); this.setShowAllRecords(true); //this.setDrawAheadRatio(Integer.MAX_VALUE); ResultSet resultSet = new ResultSet(); resultSet.setFetchMode(FetchMode.PAGED); this.setDataPageSize(pageSize); this.setDataProperties(resultSet); this.setShowRecordComponents(true); this.setShowRecordComponentsByCell(true);
what do you reccomend me?
thanks,
michal
Comment