hi guys,
I'm getting frustrated about my work, on my local computer it's working fine but when I decided to put it in the live server this what happens
when I click update button a dialog box opens but no value is selected all input fields is empty here is my dialog and js code
function editUser(){
var row = $('#dg').datagrid('getSelected');
if (row){
//mdid = row.system_md_id;
/*$('#dg2').datagrid({
url:'get-clinic.html?clinid='+row.system_md_id
});
$('#dg2').datagrid('reload', {
clinid:row.system_md_id
});*/
$('#dlg').dialog('open').dialog({
title: 'Edit Vet',
width: 1344,
height: 635,
closed: false,
cache: false,
modal: true,
resizable: true
});
$('#fm').form('load',row);
url = 'update-vet.html?id='+row.system_md_id;
}