**** BEGIN LOGGING AT Wed Jan 22 02:59:59 2014 Jan 23 01:15:19 Hey, is there any way to Disable a picker? Jan 23 01:16:04 sure Jan 23 01:16:11 well, I've never tried a picker Jan 23 01:16:22 but most things you can just say "setDisabled(true)" Jan 23 01:16:25 onyx.Picker doesn't have a setDisabled function Jan 23 01:16:43 because it isn't derived from enyo.Input Jan 23 01:16:53 huh, hold on Jan 23 01:19:49 an onyx.Button let's me use setEnabled() Jan 23 01:19:54 (wrong function name earlier) Jan 23 01:20:11 which also isn't derived from enyo.Input Jan 23 01:22:50 So I would disable the PickerButton? Jan 23 01:23:25 why not just try this.$.picker.setEnabled(false); Jan 23 01:24:02 because onyx.Picker doesn't have setEnabled Jan 23 01:24:18 hrm Jan 23 01:25:21 I'm thinking about making an "InputPicker" that disables the button whenever you use setDisabled() Jan 23 01:25:31 and also exposes getValue and setValue Jan 23 01:25:42 you could try disabling the PickerButton Jan 23 01:25:53 Yea, that's what I'm planning Jan 23 01:26:35 but I have an automated form I built, that will grab all the data that using "getValue" or will assign it using "setValue", it also disables using "setDisabled" Jan 23 01:26:46 which worked until I changed one of my inputs to a Picker instead Jan 23 01:26:50 I guess I didn't realize there were things that you couldn't disable Jan 23 01:26:54 so I think I'll make an InputPicker that does that Jan 23 01:27:02 derived from Picker Jan 23 01:27:10 I'll just have setDisabled disable the Pickerbutton Jan 23 01:28:17 Actually, I guess it will have to extend PickerDecorator since the button goes outside the Picker Jan 23 01:29:38 Yea, I'm not exactly too big of a fan of onyx.Picker, but I don't really want to code a replacement for it right now :P Jan 23 01:30:53 Eventually tho', I'm hoping we can have something based on enyo.Select Jan 23 01:33:55 we just skipped it, and used default selectors (on a webapp, not a mobile app) Jan 23 01:58:00 default selectors? Jan 23 02:01:45