richard.hallier
4 Sep 2008, 1:14 AM
Clicking on a combobox with lazy rendering and remote mode, throws a NullPointerException.
The origin is here, with el() returning null :
Class ListView
protected void onBeforeLoad() {
if (loadingText != null) {
el().setInnerHtml("<div class='loading-indicator'>" + loadingText + "</div>");
all.removeAll();
}
}
The only workaround it to set the loadingText to null
Cheers
Richard
The origin is here, with el() returning null :
Class ListView
protected void onBeforeLoad() {
if (loadingText != null) {
el().setInnerHtml("<div class='loading-indicator'>" + loadingText + "</div>");
all.removeAll();
}
}
The only workaround it to set the loadingText to null
Cheers
Richard