2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
createUser: function(originalThis, event) { | |
// DialogLogicのcreateUserメソッドを呼ぶ | |
this.dialogLogic.createUser(); | |
// 画面に追加する文字列を取得 | |
var row = this.view.get('row', { | |
id: $('#id').val(), | |
userName: $('#userName').val(), | |
password: $('#password').val() | |
}); | |
$('#result tbody').append(row); | |
$('#dialog-form').dialog('close'); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment