storeDefinition.setSorters(this.sorters);
storeDefinition.setPageSize(this.pageSize);
storeDefinition.setFilters(this.filters);
if (this.inline != null && this.inline) {
AdaptrexStoreData storeData = config.getORMPersistenceManager().getStoreData(config);
storeData.setFilters(this.filters);
storeData.setGroupers(this.groupers);
storeData.setLimit(this.pageSize);
storeData.setParams(this.params);
storeData.setSorters(this.sorters);
storeData.setStart(this.start);
storeData.setWhere(this.where);
storeDefinition.setData(storeData.getData());
storeDefinition.setTotalCount(storeData.getTotalCount());
}
String storeOutput = "<script type='text/javascript'>\n" +
"Ext.define('" + fullStoreName + "', " +
StringUtilities.json(storeDefinition, this.request.getServletContext()) +