$$('.form-to-option-service').on('click', function(){
app.dialog.confirm('Применить изменения?', function () {
var i = 0,
yourArray_service = [],
item_option = {};
item_option['id'] = id_service;
$$('#option-service-form').find('input, textarea, select').each(function() {
item_option[this.name] = this.value;
i++;
});
yourArray_service.push(item_option);
app.request({
url: url_link + 'option-service.php',
dataType: 'json',
data: JSON.stringify(yourArray_service),
method: "POST",
success: function(response2) {
if(response2['json'] == 'error'){
app.dialog.alert('Такой задачи нету', 'Ошибка');
}else{
home_load();
return false;
}
},
error: function(){
app.dialog.alert('Повторите попытку позже.', 'Ошибка при отправке');
}
});
});
});