class Lebowski::Foundation::Panes::PickerPane

Represents a proxy to a SproutCore picker pane (SC.PickerPane)

Public Instance Methods

click_off() click to toggle source
# File lib/lebowski/foundation/panes/picker.rb, line 35
def click_off()
  modal.click_at(0, 0)
end
is_fixed?() click to toggle source
# File lib/lebowski/foundation/panes/picker.rb, line 23
def is_fixed?()
  return (self['preferType'] == SC_PICKER_FIXED)
end
is_menu?() click to toggle source
# File lib/lebowski/foundation/panes/picker.rb, line 27
def is_menu?()
  return (self['preferType'] == SC_PICKER_MENU)
end
is_pointer?() click to toggle source
# File lib/lebowski/foundation/panes/picker.rb, line 31
def is_pointer?()
  return (self['preferType'] == SC_PICKER_POINTER)
end