Sha256: 868ace14e686f12f53213aa2fe9677ad42c207564048facf72cbe4a7bc3e3333
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
# coding: UTF-8 module Edgarj # ListDrawer will be obsoleted. Column will be handled by # Edgarj::Drawer::ColumnInfo module ListDrawer # Base for popup-list and normal-list column drawer # # Sub class of Drawer to draw list class Base include ERB::Util # * drawer - Edgarj::Drawer::Base object # * options def initialize(drawer, options = {}) @drawer = drawer end def draw_column_header(col, options={}) @drawer.vc.content_tag(:th) do col.column_header_label(@drawer.vc, @drawer.page_info, options) end end def draw_column(rec, col) @drawer.vc.content_tag(:td, td_options(rec, col)) do col.column_value(rec, @drawer) end end private # <td> options def td_options(rec, col) col.css_style end end # Drawer for record list in Edgarj CRUD view. # class Normal < Base def initialize(edgarj_drawer, options = {}) super(edgarj_drawer, options) end # <td> options # # add Edgarj.click_listCB() with base result. # When the column is parent, do nothing. def td_options(rec, col) super.merge( style: 'cursor:pointer;', class: '_edgarj_list_column') end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
edgarj-4.04.00 | app/helpers/edgarj/list_drawer.rb |