jquery-ui-css-framework

Modifying Rails helpers to add HTML classes

I'm starting to use the jQuery UI CSS Framework for an app, which means I have to start adding classes to everything. So, for example, I want to make all buttons jQuery-themed, which means adding a class to all buttons. I imagine there's some way in Rails to modify the helpers so I don't have to manually add a :class => 'blah' to every ...

What classes to use for a simple grid-like widget using jquery ui css framework?

I'm trying to render a table of items that will be themeable using jquery ui css framework. I don't need a powerful grid like the jquery grid plugin, just make it themeable with themeroller. Here's what I tried so far: <table class="ui-widget"> <thead class="ui-widget-header ui-widget-top"> <tr> <th>Col 1</td> ...