var dataForm = $('form#timeform').serialize();
$.ajax({
type: 'POST',
url: '/tabel/save',
cache: false,
async: true,
data: dataForm,
success: function () {
tabel.refreshCell(dataForm);
}
});