use of org.activityinfo.ui.client.widget.legacy.LoadingPlaceHolder in project activityinfo by bedatadriven.
the class AppFrameSet method showLoadingPlaceHolder.
@Override
public AsyncMonitor showLoadingPlaceHolder(PageId pageId, PageState loadingPlace) {
activePage = null;
LoadingPlaceHolder placeHolder = new LoadingPlaceHolder();
setWidget(placeHolder);
return placeHolder;
}
use of org.activityinfo.ui.client.widget.legacy.LoadingPlaceHolder in project activityinfo by bedatadriven.
the class VSplitFrameSet method showLoadingPlaceHolder.
@Override
public AsyncMonitor showLoadingPlaceHolder(PageId page, PageState loadingPlace) {
LoadingPlaceHolder placeHolder = new LoadingPlaceHolder();
setWidget(placeHolder);
activePage = null;
return placeHolder;
}
use of org.activityinfo.ui.client.widget.legacy.LoadingPlaceHolder in project activityinfo by bedatadriven.
the class SiteGridPanel method load.
public void load(final GroupingModel grouping, final Filter filter) {
removeAll();
add(new LoadingPlaceHolder());
layout();
columnModelProvider.fetchColumnModels(filter, grouping, new SuccessCallback<ColumnModel>() {
@Override
public void onSuccess(ColumnModel columnModel) {
createGrid(grouping, filter, columnModel);
}
});
updateHeading(filter);
}
Aggregations