Closed GoogleCodeExporter closed 9 years ago
Ok, I discovered workaround for this.
In OnEditCommand callback you can do it this way:
public function myOnEditCommand($sender,$param) {
$this->activeDataGrid->EditItemIndex = $param->Item->ItemIndex;
//.. something here
$this->activeDataGrid->Items[$this->activeDataGrid->EditItemIndex]->myTActiveCheckBoxColumn->CheckBox->setAutoPostBack(false);
}
Original comment by sampsa.s...@inoob.com
on 16 Nov 2011 at 1:21
Alternatively, you can do it in the OnItemCreated event. This is documented in
the Sample3 of TActiveDataGrid
Original comment by ctrlal...@gmail.com
on 16 Nov 2011 at 2:34
Original issue reported on code.google.com by
sampsa.s...@inoob.com
on 16 Nov 2011 at 1:04