class Lebowski::Foundation::Views::RadioView

Represents a proxy to a SproutCore radio view (SC.RadioView)

Public Instance Methods

buttons() click to toggle source
# File lib/lebowski/foundation/views/radio.rb, line 22
def buttons()
  @items = create_simple_item_array if @items.nil?
  return @items
end
in_mixed_state?() click to toggle source
# File lib/lebowski/foundation/views/radio.rb, line 17
def in_mixed_state?()
  value = self['value']
  return value.kind_of?(Array)
end

Protected Instance Methods

create_simple_item_array() click to toggle source
# File lib/lebowski/foundation/views/radio.rb, line 29
def create_simple_item_array()
  return Support::RadioViewItemArray.new self
end