**** BEGIN LOGGING AT Wed Aug 22 03:00:00 2012 Aug 22 03:02:05 Couldn't you just change the display attribute? Aug 22 03:06:09 that'd probably work too Aug 22 03:16:23 change it to what? i'm new to this stuff :) Aug 22 03:16:58 display:block Aug 22 03:17:04 will turn it in to a block element Aug 22 03:18:05 ah, i will try that. thanks! Aug 22 03:47:38 I have a css question, if anyone has any ideas: I'm using a table w/ 3 rows, and 2 columns that's prepopulated. I'm hiding cells on-the-fly based on user input, and there's a case where I need to hide cell (1,2) but leave cell (2,2) in it's proper place Aug 22 03:48:02 what's happening now is when I hide cell (1,2), cell (2,2) pushes left into the space that (1,2) had been in Aug 22 03:48:26 thoughts? Aug 22 03:48:40 summatusmentis: have an inner div with your content and display:none it, maybe? Aug 22 03:49:36 (it == the inner div) Aug 22 03:55:38 well, the content is an onyx.Button Aug 22 03:56:13 and display:none is what I've been doing to the cells as a whole. I've also tried visibility: collapse; (which is supposed to keep the cell intact, just collapse the content) Aug 22 03:57:09 omg i am in LOVE with the handlers function. Aug 22 03:57:12 * fxspec06 field day Aug 22 03:59:02 it's incredible what you can learn from the source Aug 22 04:08:13 what does that mean? Aug 22 04:08:24 like event handlers? Aug 22 04:13:37 basically. you include it in the header similar to the published and events, and when you declare it you set attributes you want to override Aug 22 04:14:17 when a kind inherits from another kind it inherits all the events, too.. but you can catch those with handlers before they fire Aug 22 04:45:00 yeah, that makes sense to me Aug 22 04:45:26 you have to declare a handlers block if you want to use the doEvenetName() structure also Aug 22 05:17:44 * fxspec06 banghead Aug 22 05:18:00 argh, i love spending hours fixing something that you did the wrong way Aug 22 05:18:18 when you did something earlier that made your life super e z but forgot about. Aug 22 17:05:17 anyone here used JsonpRequest? how do I get the data out of it? Aug 22 17:08:48 * madnificent only remembers running into problems with it and doing it the old school way Aug 22 17:10:22 the old school way? Aug 22 17:10:34 I'm trying to do it to get around "same host" stuff Aug 22 17:10:37 summatusmentis: you call the callback you name, iirc and it retunrs the data Aug 22 17:11:00 does the serverside have to have the callback in place? or is that clientside? Aug 22 17:11:14 alternately, sometimes you can't name it and the remote service wraps with its own callback name Aug 22 17:11:17 summatusmentis: by building an xmlhttprequest object Aug 22 17:11:21 summatusmentis: look at the script that gets injected Aug 22 17:11:33 rrix: at this point, it's just pure json Aug 22 17:11:37 madnificent: XHR only works if the CORS headers are set to allow it Aug 22 17:11:38 I'm getting an error Aug 22 17:11:45 summatusmentis: it needs to be wrapped in a callback for JSONP to work Aug 22 17:11:49 rrix: yes, but that wasn't specified earlier :) Aug 22 17:11:56 JSONP is json data wrapped in a callback function. Aug 22 17:12:05 oh, so it has to be serverside Aug 22 17:12:09 madnificent: 'get around "same host" stuff' would imply that :) Aug 22 17:12:11 summatusmentis: correct Aug 22 17:12:21 that's not helpful Aug 22 17:12:25 my server isn't setup that way Aug 22 17:12:44 rrix: yes, but that wasn't specified when i said i did it the old school way. so the second response was only explaining what i meant, not as a solution anymore :/ Aug 22 17:12:55 I need a way to run my enyo app on a webhost, and that webhost is different than my data-store server Aug 22 17:13:04 basically what happens is that the server wraps the data in a functional call fooCallback({data: 'bar'}); and you inject that as a