private void fillStore() {
contentContainer.mask(Messages.get("label.loading","Loading..."), "x-mask-loading");
contentStore.removeAll();
JahiaContentManagementServiceAsync async = JahiaContentManagementService.App.getInstance();
async.searchSQL(search, limit,
JCRClientUtils.CONTENT_NODETYPES, null, null, Arrays.asList(GWTJahiaNode.ICON,"jcr:lastModified"),false, new BaseAsyncCallback<List<GWTJahiaNode>>() {
public void onSuccess(List<GWTJahiaNode> gwtJahiaNodes) {
contentStore.add(gwtJahiaNodes);
contentContainer.layout(true);
contentContainer.unmask();