We just upgraded to SmartGWT 3.0p, not sure if previous version had the same behavior. I noticed while debugging that simply rolling a mouse over any record(s) in a TreeGrid triggers a call to createRecordComponent(). Is this the needed behavior or is it a bug? I have no MouseOver handlers in the code.
To reproduce, build a simple TreeGrid with
Set a break point within the method or add some output like println() or SC.say(). Move your mouse pointer over the records in the TreeGrid.
thanks.
To reproduce, build a simple TreeGrid with
Code:
treeGrid.setShowRecordComponents(true); treeGrid.setShowRecordComponentsByCell(true); @Override createRecordComponent(final ListGridRecord listGridRecord, Integer colNum)
thanks.
Comment