Skip to content

Instantly share code, notes, and snippets.

@apipkin
Created October 1, 2010 19:42
Show Gist options
  • Select an option

  • Save apipkin/606735 to your computer and use it in GitHub Desktop.

Select an option

Save apipkin/606735 to your computer and use it in GitHub Desktop.
createTables : function() {
GS.rowSelect.on('rowSelected', function(e) {
var res = Y.io('mapping/getGroupsTable', {
method: "post",
data: 'vid=' + e.rowTarget.getAttribute('vid'),
on: {
complete: this.fillVehTable //function(id, o, arg) {Y.log(arg);}
},
context : this,
arguments : {
tbl : "GroupContents"
}
});
},this);
},
fillVehTable : function(id, o, arg) {
//never gets called from that function
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment