class ExtButton

Public Class Methods

new(config, parent) click to toggle source
Calls superclass method ExtNode::new
# File lib/extclasses/button.rb, line 4
def initialize(config, parent)
  @default_config = {
    text: "Ext Button",
  }
  super("button", config, parent) 
end