Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created May 7, 2017 03:52
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
2.md
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