Get KoolPHP UI with 30% OFF!

Cannot select row or click edit buttons in child grid (Chrome Only)

Scott
Seeing this only in Chrome.
The master grid is order when expanded it displays the items in the order.
The problem is when the order detail rows are expanded and the rendering is greater than the master grid height.
The rows that are outside of the height of the master grid, cannot be selected, the edit delete button will not work.
If you make the master grid height much large so that all detail rows are in the master grid "frame" the detail rows can be edited.
This is not present in FireFox or IE.
Posted Dec 16, 2015 Kool
David
Hi Scott,
Could you please link to a sample page where this happened or provide the php code with this problem?
Thanks,
Posted Dec 16, 2015 Kool
Scott
Here is the current code - I have increased the master table heightfrom 500px to 1000px
The problem is when you expand a detail ( 2nd level grid) and then expansion renders over the max master table height, the rows in the detail grid outside of that area cannot be selected or buttons clicked on for edit.
$grid = new KoolGrid("grid");
$grid->scriptFolder = $KoolControlsFolder."/KoolGrid";
$grid->ShowHeader=true;
$grid->MasterTable->DataSource = $ds_prodsched;
$grid->AjaxEnabled = true;
$grid->AutoGenerateColumns = false;
$grid->AutoGenerateExpandColumn= true;
$grid->MasterTable->AddDetailTable($table_touch_task);
$grid->DetailTable->InsertSetting->Mode ="Form";
$grid->AllowSorting = true;
//$grid->AllowScrolling=true;
$grid->MasterTable->Height = "1000px";
//$grid->AutoGenerateEditColumn= true;
//$grid->AutoGenerateDeleteColumn= true;
$grid->MasterTable->Pager = new GridPrevNextAndNumericPager();
$grid->MasterTable->Pager->PageSize =12;
$grid->MasterTable->Pager->Position ="top";
$grid->MasterTable->Width = "1024px";
$grid->ColumnWrap = false;
$grid->MasterTable->EditSettings->Mode = "Inline";
$grid->AllowEditing = true;
$grid->AllowDeleting = true;
$grid->AllowInserting= true;
$grid->AllowSorting= true;
$grid->AllowSelecting= true;
// $grid->styleFolder=$_SESSION["style_select"];
$grid->styleFolder="default";
Posted Dec 29, 2015 Kool