**** BEGIN LOGGING AT Thu Aug 09 02:59:59 2012 Aug 09 06:57:58 morning Aug 09 09:58:57 swisstomcat: morning Aug 09 10:00:35 swisstomcat: question, if i understand correctly, enyo events are propagated bottom up (bubbled) ... Aug 09 10:01:18 swisstomcat: is there a way for a child component to "listen" somehow, its parent(s) events, like backbone on() Aug 09 10:01:21 ? Aug 09 10:01:50 i have read about Signals, but is more like a broadcasting Aug 09 12:57:01 sorry katratxo, just saw your message Aug 09 12:57:17 you can also waterfall down events Aug 09 12:58:17 http://enyojs.com/docs/events.html Aug 09 14:02:54 swisstomcat: ok, thanks Aug 09 14:47:31 i'm aware that Chrome for Android is in the tier 2 category, but with the new nexus 7, a 'normal' user won't be able to install the default Browser app for android Aug 09 14:48:19 i'm testing a simple app with chrome for android (using only enyo core), and when i have 3 buttons next to each other, the tap event doesn't trigger correctly Aug 09 14:48:57 yeah, we're working on getting support for ChromeAndroid Aug 09 14:49:33 https://raw.github.com/gist/3304839/b3be747c692c54d4f11e8a882d74f79647bb663b/index-chrome-android.html Aug 09 14:54:21 swisstomcat: do you have a time frame when you can consider chrome for android a supported browser? Aug 09 14:54:39 my boss wants to test the mobile app in his new gadget ;) Aug 09 14:55:48 nexus 7? Aug 09 14:55:52 let me find out Aug 09 14:55:54 swisstomcat: yeap Aug 09 15:14:16 there's a jira that tracks the progress Aug 09 15:14:18 https://enyojs.atlassian.net/secure/IssueNavigator.jspa?reset=true&jqlQuery=labels+%3D+android_chrome Aug 09 15:15:51 * katratxo checks Aug 09 15:21:17 swisstomcat: in the tracker, Fix version 2.1, means that is scheduled to be solved by this release? Aug 09 15:22:23 yeah, 2.1 or even 2.0.1 Aug 09 15:35:49 swisstomcat: thanks Aug 09 16:34:06 hi guys I'm having a problem with dividerDrawer. It opens fine but when it collapse it leaves that empty space corresponding to the elements it displayed when expanded Aug 09 16:34:12 can anyone help me please? Aug 09 16:34:59 might try running .resized() on the list after you close the drawer. Or maybe .refresh() on the list (it will cause all the items to re-build) Aug 09 16:36:17 ok ? what is the event or callback when the drawer is closed? Aug 09 16:36:58 I don't think there is one, so you probably need to listen to taps on the list and see where they originated Aug 09 16:38:05 ok ? I'll see what I can do ? thanks anyway Aug 09 16:40:18 on a meeting at the moment, so I can't go into much help at the moment Aug 09 16:40:34 it looks like there's an animatorEnd funtion that you could overwrite Aug 09 16:46:34 sugardave: Icons as part of Buttons, do they have to be a certain format? Aug 09 16:47:16 also Images, apparently Aug 09 16:47:22 I don't think so, but I always use .png or .jpg Aug 09 16:47:55 "The image associated with the src property of the IconButton is assumed to be 32x64-pixel strip with the top half showing the button's normal state and the bottom half showing its state when hovered-over or active." Aug 09 16:48:07 so, can't be svg, seemingly Aug 09 16:48:08 that sounds like IconButton Aug 09 16:48:12 no svg Aug 09 16:49:48 that is Icon Button Aug 09 16:49:57 I assume doing it manually is the same Aug 09 16:51:51 SVG works if you specify the height and width, but it truncates rather than resizing Aug 09 16:52:37 I don't think we "support Aug 09 16:52:42 " svg still Aug 09 16:52:50 :-/ Aug 09 16:53:00 but it is a bit beyond my ken right now, so not sure what is needed for it to work Aug 09 16:53:47 FIX IT Aug 09 16:54:00 for the time being, I'll just export, I guess Aug 09 18:26:53 I have a Drawer component but the onOpenChanged event is not working Aug 09 18:27:01 what could be the problem? Aug 09 18:27:37 the drawer closes and opens fine but the code inside onOpenChanged : function(){ ? } is not getting executed Aug 09 18:36:54 hisa_py: did you make an extended Drawer kind that has an onOpenChanged event defined? Aug 09 18:37:03 I don't think Drawer has events it exposes Aug 09 18:40:34 yes it does Aug 09 18:40:48 I just created a DividerDrawer kind Aug 09 18:41:36 DividerDrawer exposes onAnimationFinished and onOpenChanged events according to the API Aug 09 18:41:52 I guess I am missing this in the docs, let me take a look Aug 09 18:42:51 is it function(inSender, inEvent) ? Aug 09 18:42:54 oh waiti a second Aug 09 18:42:58 is this Enyo 1? Aug 09 18:42:59 or just function() ? Aug 09 18:43:21 I saw it here Aug 09 18:43:22 https://developer.palm.com/content/api/reference/enyo/enyo-api-reference.html#enyo.DividerDrawer Aug 09 18:43:38 yeah, that is Enyo 1....are you using Enyo 1 or 2 in your app? Aug 09 18:43:59 I'm using the webos enyo, the latest version Aug 09 18:44:10 I don't remember the version number Aug 09 18:44:17 that's 1 Aug 09 18:44:21 where did you get it? In the SDK or downloaded from GitHub? Aug 09 18:44:24 the one that comes with the PalmSDK Aug 09 18:44:30 okay, that is Enyo 1 Aug 09 18:46:19 hisa_py: so, that's not really an event Aug 09 18:46:30 what you want is to write the function openChanged in your kind Aug 09 18:46:34 not onOpenChanged Aug 09 18:46:58 oooh Aug 09 18:48:00 hisa_py: also, if you are just starting with Enyo development, you probably want to switch over to Enyo 2 Aug 09 18:48:02 is it going to trigger when the drawer opens/closes> Aug 09 18:48:02 ? Aug 09 18:48:41 do you think enyo 2 will work on the touchpad device? Aug 09 18:48:53 hisa_py: it will trigget when you use drawer.setOpen() to change the value Aug 09 18:49:17 Lots of Enyo 2 works on the TouchPad....do you only want your app to run there and not other devices? Aug 09 18:50:01 oh wait a second Aug 09 18:50:06 damn I hate being wrong/ too fast Aug 09 18:50:16 it DOES inherit onOpenChanged event from Divider Aug 09 18:50:16 so Aug 09 18:50:44 for the moment that is the only requirement. actually it is not my app. I have a client that hired me to create a catalog for his 10 touchpad he bought because some guy told him to Aug 09 18:50:51 when you declare your DividerDrawer like this: {kind: DividerDrawe, onOpenChanged: "handleThis"} Aug 09 18:51:06 and handleThis:function(){} in the containing kind....that should work Aug 09 18:51:07 you are a geniuos sugardave Aug 09 18:51:17 the first you told did the job Aug 09 18:51:22 coolio Aug 09 18:51:25 it has to be just openChanged Aug 09 18:51:30 not onOpenChanged() Aug 09 18:52:21 anyway my problem is because I have the drawer next to a checkbox Aug 09 18:52:27 inside a HFlexBox Aug 09 18:52:43 when the drawer expands everything works fine Aug 09 18:53:30 but when the drawer collapses the checkbox container is still of the size of the drawer when it was expanded Aug 09 18:54:08 size = height Aug 09 18:55:12 do u know some css or some property I might use to solve this? Aug 09 19:03:50 openChanged is not working? when I use it the drawer just won't work Aug 09 19:04:00 but the event gets fired when I load the page Aug 09 19:27:54 I've solved it ? I just used a float: right in the style of the DivideDrawer and it did the trick Aug 09 21:03:52 Time capsule, here I come! Aug 09 21:16:32 * fxspec06 ducks Aug 09 22:28:26 it's a beautiful thing when my webOS tablet picks up my Google messages an instant before my Android tablet picks up my Google messages Aug 10 02:30:44 does anyone know how can I build a 2x2 image grid? Aug 10 02:31:22 FittableRows with two FittableColumns, each with an image? Aug 10 02:31:54 (wait, 1.x or 2.x? i don't know anything about 1.x) Aug 10 02:32:01 I think is 1 Aug 10 02:32:11 the one in PalmSDK Aug 10 02:32:14 ah Aug 10 02:32:37 I tried using HFlexBox but the image are going one under another Aug 10 02:34:05 Fittable does not exists in enyo 1 Aug 10 02:34:09 :( Aug 10 02:51:22 anyone know how i can mock an Ajax easily? **** ENDING LOGGING AT Fri Aug 10 02:59:58 2012