kendo ui - master detail with combobox and a grid -
i use combobox , grid telerik kendoui php , trying make master detail relation when current selected item change in combobox grid update current data. here combobox code: $combobox = new \kendo\ui\combobox('combobox'); $combobox->datatextfield('text') ->datavaluefield('value') ->datasource(array( array('text' => 'item 1', 'value' => '1'), array('text' => 'item 2', 'value' => '2'), array('text' => 'item 3', 'value' => '3') )) ->change('onchange'); ?> <div class="demo-section"> <h3 class="title">combobox </h3> <?php echo $combobox->render(); ?> </div> <script> function onchange() { } </script> the grid used standard 1 data php file return data in json format. should use on...