Skip to content

Instantly share code, notes, and snippets.

@stlsmiths
Created May 8, 2012 15:03
Show Gist options
  • Save stlsmiths/2636007 to your computer and use it in GitHub Desktop.
Save stlsmiths/2636007 to your computer and use it in GitHub Desktop.
.yui3-skin-sam .yui3-datatable tr.myhilite td { background-color: #C0ffc0; }
var dt = new Y.DataTable({....});
dt.delegate("click",function(e){
var tr = e.target;
tr.addClass("myhilite");
}, "tr", dt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment