Created
May 8, 2012 15:03
-
-
Save stlsmiths/2636007 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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