**** BEGIN LOGGING AT Thu Dec 27 02:59:59 2012 Dec 27 15:54:29 after destroying the selected component in a picker, how do I also deselect it in the picker? Dec 27 15:56:37 or just, with a picker, how do I set it to its default state (have none of its components selected)? Dec 27 15:56:59 binni: setSelected(null) ? Dec 27 16:01:32 katratxo, no, doesn't seem to work Dec 27 16:06:44 why do you need to do that? Dec 27 16:07:54 i think picker has a selection object inside it, this.$.picker.$.selection, i forget the properties of that tho. looking to see what i got Dec 27 16:08:41 well I have a picker and a button labeld "remove" and it removes a database on the server side and should also remove its reference (component) in the picker Dec 27 16:08:42 oh, it's the active Dec 27 16:09:13 this.$.picker.getActive().setActive(false); ..... ? Dec 27 16:09:37 er that doesn't look right. but there is a property for every object in the picker called 'active' and it's a boo, Dec 27 16:09:38 bool* Dec 27 16:13:39 Uncaught TypeError: Object onyx.Picker has no method 'getActive' Dec 27 16:14:38 maybe I could do getSelected and change its active property .active = false Dec 27 16:14:53 getSelected().setActive(false) Dec 27 16:15:20 generally you should use.setPublishedproperty() method if it exists Dec 27 16:19:50 hmm, this.$.dbs.getSelected().setActive(false); doesn't seem to work, also tried doing this.$.dbs.render(); after it and on further inspection the "active" property of the component was already set to false. Dec 27 16:26:03 x = this.$.dbs; x.getSelected().removeClass("selected"); x.setSelected(null); x.render(); // ? Dec 27 16:26:06 possibly Dec 27 16:36:34 i still can't figure out why / how reminicence of pickers remain on the screen sometimes, and how to get rid of them.. // dynamically generated pickers not being fully rendered and then parent being destroyed mid-render Dec 27 17:37:06 fxspec06, nothing seemed to work so I just ended up removing/destroying the whole picker and recreating it. Dec 27 17:40:25 ha, that would work Dec 27 17:40:33 not the most elegant Dec 27 17:42:47 fxspec06, I have a saying....UBE Dec 27 17:49:07 what's that Dec 27 17:50:13 Ugly, but Effective **** ENDING LOGGING AT Fri Dec 28 02:59:58 2012