hi guys,
for the sake of others here's what I've done
<table id="dg2" class="easyui-datagrid" style="width:auto;max-width:1300px;height:auto" rownumbers="true" fitColumns="true" singleSelect="true" autoRowHeight="false">
<thead>
<tr>
<th field="company_clinic_name" width="30" sortable="true">Clinic Name</th>
<th field="Municipality" width="50" sortable="true">Municipality</th>
<th field="Province" width="50" sortable="true">Province</th>
</tr>
</thead>
</table>
var row = $('#dg').datagrid('getSelected');
if (row){
$('#dg2').datagrid({
url:'get-clinic.html?clinid='+row.system_md_id
});
}
noted! this data grid is inside a edit dialog box my reference is in my first comment
Thank you stworthy!!