**** BEGIN LOGGING AT Fri Jan 11 02:59:59 2013 Jan 11 03:20:13 but this those buttons are not grouped Jan 11 03:24:37 you can do: kind: 'Group', layoutKind: 'FittableRows' ... then Jan 11 03:28:01 dumb question but is there a css for adding animation to enyo.Popup hide(); ? i wanted to do a .35sec animation and then add my own style or override one that might be used already Jan 11 03:28:40 im not really sure how to call hide(); on a delay it seems to happen before the tmeout i specifiy . maybe my syntax is wrong Jan 11 03:30:49 sure. extend it and give it your own name, then overwrite the hide function and call this.inherited(arguments) on a .35 second timeout Jan 11 03:31:45 we i did and internally when a button is clicked i want to call hide(); Jan 11 03:32:03 instead i put that in a function and used setTimeout but hide happens instantly so i dont get it Jan 11 03:32:54 how is your timeout syntax? it's finnicky Jan 11 03:33:39 http://pastie.org/5665778 Jan 11 03:33:47 thats inside my button click callback Jan 11 03:34:03 the class is just the .35 sec animation but i dont even see it the hide happens right away Jan 11 03:34:11 no, Jan 11 03:34:32 you're doing it the wrong way you have to bind it. Jan 11 03:34:55 hows that look? Jan 11 03:35:40 <_minego> setTimeout(function() { this.hide(); }.bind(this), 5000); Jan 11 03:35:59 var hide = function(c) { c.hide }; window.setTimeout(hide.bind(this, c), 5000, c); Jan 11 03:36:30 you can put setTimeout on to this, too (ie this.setTimeout) i just like window because you can clear it. Jan 11 03:36:54 or that way too Jan 11 03:37:30 <_minego> drunknbass: Short answer, you need to pass a function to setTimeout, but you're calling the function instead of passing the function. Jan 11 03:38:16 yea thats what it felt like Jan 11 04:16:38 are the css styles used by default documented anywhere other than in the css file(s) Jan 11 09:36:52 oi **** ENDING LOGGING AT Sat Jan 12 02:59:59 2013