# File lib/Borges/Report/TableReport.rb, line 28
  def render_column_row_on(aColumn, aRow, r)
    text = aColumn.textForRow(aRow)
    text = ' ' if text.empty?
    r.tableData do
      unless aColumn.canChoose then
        r.text(text)
      else
        r.anchorWithAction_text(proc do
          self.chooseRow_column(aRow, aColumn)
        end, text)
      end
    end
  end