/*
* Various store options
*/
if (pageSize != null) store.pageSize(Integer.valueOf(pageSize));
if (include != null) store.include(include);
if (exclude != null) store.exclude(exclude);
if (clearOnPageLoad != null && clearOnPageLoad.equals("true")) store.clearOnPageLoad();
if (clearRemovedOnLoad != null && clearRemovedOnLoad.equals("true")) store.clearRemovedOnLoad();
if (autoSync != null && autoSync.equals("true")) store.autoSync();
if (autoLoad != null && autoLoad.equals("true")) store.autoLoad();