About this entry
You’re currently reading “Enlarging your YUI DataTable in 29 Seconds or Less!,” an entry on Web 3.0, 6 Bladed Razors, 7 Minute Abs
- Published:
- 08.28.07 / 9pm
- Category:
- JavaScript
Bookmark with- del.icio.us
Add to- Digg
Post on
Search on - Technorati
Enlarging your YUI DataTable in 29 Seconds or Less!
This is an updated version of the Enlarging your YUI DataTable in 30 Seconds or Less! modified for the newly released YUI 2.3.0.
This method adds an extra row to the YUI DataTable when a row is selected, below the selected row. This allows the developer to add additional content that might not be applicable to the column constraints of a typical datatable or grid and allow that content be displayed more fluidly inside a single row spanning all of the viewable columns.
I know you're anxious for an example, so let's see some screenshots of a simple YUI DataTable:
Turns into this when a row is selected:
Click any of the above images for a live example.
Any HTML can be added. You can make an AJAX call and put the result into the newly inserted row (that will be left as an exercise for the reader [you]).
I know you're asking yourself, how the hell do I add this to my YUI DataTable? WHERE IS THE DAMN SOURCE CODE? Calm down, you know I'm getting to it.
How To
1. Include the ymod-tableExtension-2.3.0.js file.
2. Create your DataTable. If you don't know how to do this, go to the official documentation for help and examples.
3. Make sure your DataTable has the selectionMode parameter set to 'single'. This can be achieved by passing in { selectionMode: 'single' } in as the 4th argument to the DataTable constructor.
4. Use the following code to setup your table extension:
YAHOO.ymod.tableExtension.setup( myDataTable, function( contentDiv )
{
var myContent = '';
var selectedRows = this.getSelectedRows();
if( selectedRows.length> 0 )
{
myContent += 'Do something based on<br />the row that is selected!';
}
contentDiv.innerHTML = myContent;
} );
The setup function is basically a convenience method to add the event listeners. You can just as easily do this yourself manually:
myDataTable.subscribe( 'headerRowMousedownEvent', YAHOO.ymod.tableExtension.cleanUp );
myDataTable.subscribe( 'rowClickEvent', YAHOO.ymod.tableExtension.selectRow, function( contentDiv ) { /* same as function appears above */ } );
CSS
Here's some CSS hooks to do some styling. The expanded row will include the yui-dt-selected class by default.
tr.ymod-expanded {}
/* Row containing the expanded content */
tr.ymod-expandedData {}
/* Div containing the expanded content inside the row */
tr.ymod-expandedData div.ymod-expandedDataContent { background-color: navy; padding: 2px 6px; }
Limitations
- Resorting removes the expanded content. Otherwise it was messing with the sort.
- It only works with single row selection mode, which allows only one row to be selected at a time. This is not the default (standard), which allows multiple rows to be selected with SHIFT or CTRL. Feel free to modify this to work with other modes!
Download ymod-tableExtension-2.3.0.js
Technorati Tags: YUI, DataTable, Grid
subscribe to my blog. You'll save me some bandwidth that way.

Follow


6 Comments
Jump to comment form | comments rss [?] | trackback uri [?]