#customers
  %table#customerTable
    - @customers.each_with_index do |customer, i|
...

Ruby Refactor for table "ge...

by danielz.myopenid.com, October 02, 2011 03:51, 6 refactorings, tagged with ruby, table, haml, challenge

Hey Guys,

I'm stuck with...

51bedeb346fa52074fe8bd52d6fe3ff0 Talk
/**
 * Generates a multi-column table from an array 
 *
...

PHP Generate table from array

by gwrtheyrn, July 24, 2009 10:48, 5 refactorings, tagged with php, table, array

This function generates a m...

D3bd7339e1941bc25c05110b69a82721 Talk
document.observe('dom:loaded', function() {
    var tObjs = document.getElementsByTagName('table');
    for (var x = 0; x < tObjs.length; x++) {
...

JavaScript Highlight the table row on ...

by Danny Peck, May 26, 2009 14:38, 7 refactorings, tagged with javascript, table, highlighting

A fairly common thing to do...

8f5553306c2cf7f4b14153f6117f8e9b Talk
<table>
  <thead> <th colspan="2">Groups</th></thead>
  
...

Ruby Generating tables with a he...

by foxdemon, October 17, 2008 13:17, 1 refactoring, tagged with rails, table, helper method

I need to make tables to li...

8fa97b9513b66cccc2db021782863b3b Talk
<table class="charge">
  <tr>
    <td colspan="100%" class="mainHeader"><%=@label.label%></td>
...

Ruby Iterating through a nested ...

by mwilliams, January 31, 2008 18:21, 3 refactorings, tagged with rails, ruby, Ruby on Rails, view, table, hash, nested hash, iterator, iterate

Good afternoon. I have a n...

4236ea6b84f4899b469e8edff4bf6d22 Talk