Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. dojo.connect(mygrid, "onSelected", this, function () {
  2. this.lookupTaskId();
  3. });
  4. lookupTaskId : function() {
  5. var URL = "someURL";
  6. var xhrArgs = {
  7. url: URL,
  8. handleAs: "json",
  9. preventCache: true,
  10. load: function (response) { console.debug(response)}
  11. };
  12. dojo.xhrGet(xhrArgs);
Add Comment
Please, Sign In to add comment