$('#job_text_origin').combogrid
({
url:'
https://127.0.0.1/live_planning/index.php/job/fcn_job_getcity',
idField:'city_id', textField:'city_name', mode:'remote', fitColumns:true,
columns:
[[
{field:'city_id',title:'Id',width:25},
{field:'city_name',title:'City',width:100}
]],
onSelect:function(row) {
$link=$('#job_text_origin').combobox('getValue');
//Autocomplete job_text_origin address
$('#job_text_originaddress').combogrid
({
panelWidth:600,
url:"https://127.0.0.1/live_planning/index.php/job/fcn_job_getaddress/"+$link,
idField:'site_id', textField:'site_address', mode:'remote', fitColumns:true,
hasDownArrow:false,
columns:
[[
{field:'site_id',title:'Id',width:20},
{field:'site_address',title:'Address',width:390}
]]
});
//end autocomplete
}
});