Skip to content

Instantly share code, notes, and snippets.

@goofmint
Last active May 27, 2016 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/4159e931e888de2470b983f12ff1a1b1 to your computer and use it in GitHub Desktop.
Save goofmint/4159e931e888de2470b983f12ff1a1b1 to your computer and use it in GitHub Desktop.
'.gridViewer showDetail': function(ctx) {
var id = ctx.evArg;
if (!id) {
return;
}
var isMass = ($.isArray(id) ? id[0] : id).indexOf('_') === '0';
var data = this._appLogic.getPurchaseById(id);
this._detailController.setData(data, isMass);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment