0
我在頁面上有一個網格。當我點擊行 - 項目數據顯示在對話框(jQuery的對話框UI插件)內的項目數據編輯窗體。 問題是在點擊對話框「保存」按鈕後,用新的用戶輸入從html中獲取數據項。 這裏是我的代碼:與jQuery模板插件的問題
$('#OutLookAccountsGrid').on('click', 'span.btnOutlookAccountEdit', function() {
//getting data from grid row
var account = $(this).tmplItem().data;
//populating edit template with data
var tbl = $('#outlookaccountEditFormTmpl').tmpl(account);
//displaying edit form inside dialog
tbl.dialog({
modal: true,
width: 400,
buttons: {
"Yes": function() {
var $this = $(this);
//PROBLEM!!! PROBLEM!!! PROBLEM!!!
//want to get values from user, but instead getting old values
//populated from grid row
var data = $.tmplItem(this).data;
//...
//want to send tmplItem with new values throught ajax as data param
//...
}
}
})//end of dialog
})
是有可能得到的對象與新的價值?