How Do I Subclass The TextCellEditor Of Slickgrid?
How do I subclass the TextCellEditor of Slickgrid? I want to style the editors used in slickgrid using the uniform library; to do so I need to call $('input, textarea, select, but
Solution 1:
You could bind a .ready() event to the generated html content by class using .live() so it applies to all future content, not just content present in the initial DOM.
So...
$('.classOfSlickGrid').live('ready', function() {
$("input, textarea, select, button").uniform();
}
Post a Comment for "How Do I Subclass The TextCellEditor Of Slickgrid?"