alvin zefanya
alvin zefanya

Reputation: 1

How to export file xml from QDataGridColumn to zip file for download from a button QCubed/QCodo

its my code .. can anyone help me ? :(

public function btnZipDownload_Click($zip, $key, $base) {

    foreach($this->GetAllControls() as $objControl) {
        if (substr($objControl->ControlId, 0, 11) == 'chkSelected') {
                $zip = new ZipArchive;
                if ($zip->open('somefile.zip') === TRUE) {
                    for ($i = 0; $i < $zip->numFiles; $i++) {
                        if ($objControl->$couples) {
                            $couples[]=array('filename'=>'./somenewfile.ext','localname'=>$zip->getNameIndex($i));
                        }
                    }
                }
                foreach ($couples as $couple) $zip->addFile($couple['filename'],$couple['localname']);
                $zip->close();
            }
        }

    }
}

Upvotes: 0

Views: 52

Answers (1)

spekary
spekary

Reputation: 438

I think you want

$objControl->Checked

instead of

$objControl->$couples

Upvotes: 0

Related Questions