Добрый день! Есть ли у кого опыт работы с фреймворком jquery easyui? Пытаюсь его использовать в своем сайте и возникает следующая проблема. Хочу отправить форму на сервер
function newIngredient(){
$('#dlg').dialog('open').dialog('center').dialog('setTitle','Добавление ингредиента');
$('#fm').form('clear');
url = '<?php echo href_to('recipes',$recipe['id'],'save_ingredient'); ?>';
}
function saveIngredient(){
$('#fm').form('submit',{
url: url,
dataType: 'json',
onSubmit: function(){
//return $(this).form('validate');
},
success: function(result){
var result = eval('('+result+')');
if (result.errorMsg){
$.messager.show({
title: 'Error',
msg: result.errorMsg
});
} else {
$('#dlg').dialog('close'); // close the dialog
$('#dg').datagrid('reload'); // reload the user data
}
}
});
}
if (!$this->request->isAjax()){ cmsCore::error404(); }
$template = cmsTemplate::getInstance();
'id' => 5,
'qantity' => '1',
'ingr_title' => '1',
'uint_title' => '1'
);
//print_r($request_array);
$template->renderJSON($result);
$this->halt();
сервер выдает ошибку 404 так как данные переданы не аяксом.