我试图在xeditable中使用一个combodate然而,当我尝试保存moment.min.js说this.format不是一个函数。这是来自moment.js的某处,所以这是我的代码:
$('#start').editable({
viewformat: 'DD-MM-YYYY',
success: function(result, newValue){
return $.ajax({
url: '/Project/Edit',
data: { id: '1', NewValue: newValue, type: 'StartDate' },
success: function (result) {
if (result.Success == 'Success') {
notify('The Start Date was successfully updated.', 'success');
} else {
notify('The Start Date could not be updated at this time.', 'error');
}
}
});
}
}).on('hidden', function () {
$(this).parent().next().children().removeClass('disabled');
});
这是在moment.js
中调用的行toString: function () { return this.format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")
在调用可编辑成功函数后立即调用moment.js中的这一行。
答案 0 :(得分:0)
我明白了。我不得不在ajax调用中调用newValue上的.format()方法。这就是js瞬间给我的错误。这是工作代码:
$('#start').editable({
viewformat: 'DD-MM-YYYY',
success: function(result, newValue){
return $.ajax({
url: '/Project/Edit',
data: { id: '1', NewValue: newValue.format('MM/DD/YYYY'), type: 'StartDate' },
success: function (result) {
if (result.Success == 'Success') {
notify('The Start Date was successfully updated.', 'success');
} else {
notify('The Start Date could not be updated at this time.', 'error');
}
}
});
}
}).on('hidden', function () {
$(this).parent().next().children().removeClass('disabled');
});