Sha256: d17514f7341797aa459f6b0a0742b62431a40f03570418994c36879e9b408622
Contents?: true
Size: 297 Bytes
Versions: 1
Compression:
Stored size: 297 Bytes
Contents
module Birt::ApiHelper def parse_table_header(table_header) header = [] table_header.rows.each_with_index { |row, index| header << [] row.row_cells.each { |row_cell| header[index] << row_cell.cell_labels[0].text_properties[0].text } } header end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
birt-api-0.1.3 | app/helpers/birt/api_helper.rb |