bug plan fix
Add copy sql html format
This commit is contained in:
levinsv 2019-02-09 14:17:33 +05:00
parent dfa337816c
commit 0b39fb9f92
8 changed files with 95 additions and 19 deletions

View file

@ -638,12 +638,14 @@ int recurse(ctlSQLGrid *g, int pos,int row, double &transfer) {
return row;
}
void ctlSQLGrid::SetRowGroup(int row) { };
bool ctlSQLGrid::FullArrayCollapseRowsPlan()
bool ctlSQLGrid::FullArrayCollapseRowsPlan(bool clear)
{
//wxString colKey = wxString::Format(wxT("%d:"), col) + GetColLabelValue(col);
wxString text;
//for(int row = 0; row < GetNumberRows(); ++row)
if (grp) { delete grp;}
if (clear) { grp=NULL; return true;}
grp = new GroupRows(this);
double transfersum=0;
int r= recurse(this,0,0,transfersum);