**** BEGIN LOGGING AT Wed Oct 29 03:00:00 2014 Oct 29 03:57:50 trex0053 keep in mind, it’s not just an extra DIV but an extra JS object too, css will have less memory overhead implications in the long run Oct 29 15:30:03 dmanderson: Thank you. Got the message a little late but I can go back and recode Oct 29 15:31:39 I'm having all sorts of layout issues, which seem to be related to it being within a popup. Maybe if I recode they'll go away Oct 29 15:55:17 so is it possible to use enyo without ruby? Oct 29 15:56:26 huh ? Oct 29 15:56:33 * Semanticfire never used enyo with ruby :) Oct 29 15:56:47 robert_: Enyo is a Javascript framework. No ruby is required. Oct 29 15:56:53 I think I heard somewhere that enyo was a ruby web framework or something Oct 29 15:56:55 ah, good. Oct 29 16:01:29 so I'm looking for a paned application layout. Oct 29 16:02:13 OH, that's Ember that I'm thinking about. Oct 29 16:07:32 robert_: Enyo can do paned layouts using enyo.Panels, assuming I am understanding you correctly Oct 29 16:07:54 unless you are looking for ruby :) Oct 29 16:09:55 Oh, no; I'm a python developer. :p Oct 29 16:19:20 then enyo is not helping either ;) Oct 29 16:20:36 :p Oct 29 16:20:50 but you are welcome anyway Oct 29 16:21:03 I don't mind wiring it up manually, I just want to make sure that it wasn't married to soemthing I had no interest in using. :p Oct 29 16:21:07 anyway Oct 29 16:21:23 something ** Oct 29 16:21:27 I'm trying to get FittableRows to fit properly. Oct 29 16:24:13 what do you put in them ? Oct 29 16:26:22 http://jsfiddle.net/kxy3bs1y/1/ Oct 29 16:27:54 so whats wrong ? Oct 29 16:28:17 the sidebar ("Right") needs to be wider. Oct 29 16:29:06 I'm looking for something like a 20% / 80% split between the sidebar and main content. Oct 29 16:29:14 robert_, you'll need to put actual content in the right sidebar Oct 29 16:29:16 set a width ? Oct 29 16:29:20 or otherwise specify the width Oct 29 16:29:30 robert_: if you want a 20/80 split, set a 20% width on the sidebar using CSS Oct 29 16:30:15 http://jsfiddle.net/kxy3bs1y/2/ Oct 29 16:30:55 ^ like that Oct 29 16:31:27 oh, you can theme it with normal css? Oct 29 16:31:30 sweet. Oct 29 16:31:32 sure Oct 29 16:31:33 Yup Oct 29 16:32:03 so can I change the tag that gets output? (so I can take advantage of the new html5 tags) Oct 29 16:32:08 ultimately, Enyo just ends up as plain old HTML Oct 29 16:32:10 yup Oct 29 16:32:15 sweet. Oct 29 16:32:29 so there's like a tag: property or something? Oct 29 16:32:32 yup Oct 29 16:32:33 exactly Oct 29 16:32:37 you learn quickly :) Oct 29 16:32:43 tag: "div" is default for an enyo.Control Oct 29 16:32:50 well, Enyo is pretty straightforward Oct 29 16:32:57 so tag: "ul" would give you an unordered list for example Oct 29 16:33:01 for basic things, at least Oct 29 16:33:08 sweet. :D Oct 29 17:00:15 I have a layout that is totally skiwompus, but when I resize the window it puts everything in the right places. Is there a way for me to trigger that app level redraw manually? Oct 29 17:02:08 I tried app.render() to no avail. Oct 29 17:03:15 trex005, I had the same issue :) Oct 29 17:03:23 you have images in there ? Oct 29 17:04:07 Yes, There are images Oct 29 17:06:13 put a class on the image setting the height + width of the image Oct 29 17:06:21 did you wrap render in enyo.asyncMethod(enyo.bindSafely(function(){ this.render(); }, this)); Oct 29 17:06:41 unfortunately I don't know the height ahead of time. Oct 29 17:06:45 it’s hacky, but can work if you have content that hasn’t finished laying out in the browser Oct 29 17:06:48 ohw Oct 29 17:06:59 dmanderson, that would solve my issue as well ? Oct 29 17:07:20 I'll try that. I have no idea what it means, but I'll try it :) Oct 29 17:07:24 I’m thinking it would work in that instance as well, I hadn’t had time to try, but remember using this solution before. Oct 29 17:09:33 and where should I do this ? Oct 29 17:11:38 dmanderson, this line doesn't work Oct 29 17:12:53 Doesn't seem to be working for me either, but I don't know if that's because it's only on this. and not app. Oct 29 17:14:25 coffee break Oct 29 17:15:01 sorry bindSafely backwards Oct 29 17:15:41 this first? Oct 29 17:17:23 That did it! Oct 29 17:18:30 working example http://jsfiddle.net/hr6o2ck4/ Oct 29 17:18:38 nice trex005! Oct 29 17:20:09 on second thought, this is better http://jsfiddle.net/hr6o2ck4/1/ Oct 29 17:20:14 You can just delay the inherited render method Oct 29 17:20:38 woops this one http://jsfiddle.net/hr6o2ck4/2/ Oct 29 17:26:48 calling inherited(args) instead of render()? Oct 29 17:26:59 ohhh, I see Oct 29 17:27:11 nevermind your putting it on the app level Oct 29 17:28:30 I'll try that Oct 29 17:31:55 That did the trick beautifully. Oct 29 17:33:09 great! Oct 29 17:38:26 That seems like a really weird way to handle that problem Oct 29 17:38:52 why not just call resized() on the app level once the app is rendered? Oct 29 17:47:07 Hey, anyone remember where the demo of list where swiping left did one thing and swiping the other did something different? Oct 29 17:47:24 DougReeder: you can find that in the Sampler Oct 29 17:47:25 I thought it was part of the Sampler, but I’m not finding it. Oct 29 17:47:30 hrmm Oct 29 17:47:42 lemme look real quick Oct 29 17:48:01 Oh ,ther is is Oct 29 17:48:05 lol Oct 29 17:49:30 Sampler > Layout > List > Swipable-Reorderable List Oct 29 17:49:42 Sampler has gotten too big Oct 29 17:50:30 nahh Oct 29 17:50:35 Sorry to bother you guys. Oct 29 17:50:40 http://enyojs.com/sampler/latest/lib/layout/list/samples/ListLanguagesSample.html Oct 29 17:50:45 it's what they're here for :P Oct 29 17:50:58 lol Oct 29 17:52:11 DougReeder: most of us are here for give and take. We want questions answered, and we try to help others to receive the same support that we would like to receive. ;) Oct 29 17:55:21 Gajus Kuizinas has an interesting lib for a somewhat different style of card swiping (within an app): https://github.com/gajus/swing/ Oct 29 18:05:04 trex005, did you get the call to work ? Oct 29 18:10:26 wb Semanticfire http://jsfiddle.net/hr6o2ck4/2/ Oct 29 18:12:02 okay this doesn't help in my case Oct 29 18:13:24 aw shucks Oct 29 18:15:22 yup :) Oct 29 18:15:28 well the 2 stylesheet mods werk fine Oct 29 18:18:11 did you test my code with a nightly btw ? Oct 29 18:36:26 morning i2y4n Oct 29 18:36:47 morning GodGinrai Oct 30 01:37:26 does enyojs have a tab panel control? **** ENDING LOGGING AT Thu Oct 30 03:00:00 2014