mate17
17 Oct 2011, 7:30 AM
The code was changed in method positionButtons of RowEditor to:
int h = el().getClientHeight();
if (btns != null) {
....
So it assert (rendered : "Method must be called after the component is rendered") when the grid scrolled and the RowEditor is not rendered yet (the btns is null).
In the older version the code (2.2.3) was:
if (btns != null) {
int h = el().getClientHeight();
....
- GXT version: 2.2.5
- Host mode / web mode / both: both
- Browser and version: Firefox 3.0.x - 7.0.1; Opera 11.51
- Operating System: Windows 7
- Sample code: n.a
Thank U!
Mate
int h = el().getClientHeight();
if (btns != null) {
....
So it assert (rendered : "Method must be called after the component is rendered") when the grid scrolled and the RowEditor is not rendered yet (the btns is null).
In the older version the code (2.2.3) was:
if (btns != null) {
int h = el().getClientHeight();
....
- GXT version: 2.2.5
- Host mode / web mode / both: both
- Browser and version: Firefox 3.0.x - 7.0.1; Opera 11.51
- Operating System: Windows 7
- Sample code: n.a
Thank U!
Mate