class TreeViewColumnToggle

Public Class Methods

new(title, column_id ) click to toggle source
Calls superclass method
# File lib/yasysdui/service_list.rb, line 61
def initialize(title, column_id )
    attrs = { :active => column_id }
    super(title, @@cell_renderer , attrs )
    self.resizable = true 
    self.sort_column_id = column_id
end