Added fixes for layouts+ComboBoxevents

This commit is contained in:
Peter Schojer
2008-05-27 12:58:28 +00:00
parent 0362659ac9
commit e07a2126e9
22 changed files with 258 additions and 27 deletions

View File

@@ -244,13 +244,13 @@ void TableRenderer::renderStore(const Table* pTable, std::ostream& ostr)
}
ostr << ",{name:'" << i << "'}";
ostr << "],"; // close fields
ostr << "proxy: new Ext.data.HttpProxy({url:";
ostr << "proxy:new Ext.data.HttpProxy({url:";
std::map<std::string, std::string> addParams;
addParams.insert(std::make_pair(RequestHandler::KEY_EVID,Table::EV_LOADDATA));
std::string url(Utility::createURI(addParams, pTable->id()));
ostr << url << "}),";
ostr << "reader: new Ext.data.ArrayReader()";
ostr << "reader:new Ext.data.ArrayReader()";
//Write data
/*ostr << "data:";
renderDataModel(pTable, ostr);*/