Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

yui3 · Archival: YUI 3.x Discussion Forum

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 470
  • Category: Web Design
  • Founded: Jul 29, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 759 - 791 of 950   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
759 pro1712 Send Email Jul 1, 2009
9:58 am
Hello! In YUI 2.7.0 the result of an iframe-upload is passed back as responseText and responseXML. Taken from connection.js: // responseText and responseXML...
760 Paolo Nesti Poggi
paolonesti Send Email
Jul 1, 2009
10:59 am
Hi, I would like to hear some comments about a practice I'm going to use. The need I'm trying to cater for is that of having external libraries included in a...
761 Paolo Nesti Poggi
paolonesti Send Email
Jul 1, 2009
12:17 pm
ehm, of course the module code ends with the line: Mycode.Mod_1 = M; //<<--- }()); Paolo Nesti Poggi skrev: }; //from here you can use Y in your module M.tryme...
762 tssha Send Email Jul 1, 2009
5:12 pm
... It is an existing task, and the feature will be implemented for the next release. Feel free to open a ticket so you can track any commits as they are...
763 pao_lino72 Send Email Jul 1, 2009
6:33 pm
Hi, I've tried to use overlay but I faced a few memory troubles. Let me explain with a very sample case: I have a function which creates a very sample overlay...
764 Eric Ferraiuolo
eric.ferraiuolo Send Email
Jul 1, 2009
9:19 pm
Calling the destroy() method is a good idea, but after you do that you probably want to drop any references to the *destroyed* Object. Another solution might...
766 vrusha1512 Send Email Jul 3, 2009
4:12 am
I have implemented a combobox with autcomplete and div(performing as button). I am facing problem in aligning them....
767 Tom Berger
t0mberger Send Email
Jul 3, 2009
8:08 am
... Wow, sounds exciting. Is there some code we can look at? Are you using the MenuNav for the list part of the widget? We (Launchpad.net) used it to develop...
768 vrusha1512 Send Email Jul 3, 2009
9:59 am
I have datatable component below the autocomplete.When container opens up it works fine in Mozilla but in IE, some part of autocomplete container is populating...
769 Eric Miraglia
ericmiraglia Send Email
Jul 6, 2009
5:17 pm
vrusha1512, You may want to check out this setting in AutoComplete -- http://developer.yahoo.com/yui/autocomplete/index.html#iframe -- and to take a look at...
771 Eric Miraglia
ericmiraglia Send Email
Jul 9, 2009
4:59 pm
YUI 3 roadmap: http://yuilibrary.com/projects/yui3/roadmap YUI 2 roadmap: http://yuilibrary.com/projects/yui2/roadmap Our advice would be to begin new...
773 janos_pal_toth Send Email Jul 14, 2009
10:48 am
Hi, I'm not completely sure what supposed to be the status of YUI3's FocusManager plugin - the YUI homepage talks about, but the beta 1 release notes are...
774 Adam Moore
adam.moore Send Email
Jul 15, 2009
8:06 pm
... Please use the bug tracker to report bugs. I raised an issue for you: http://yuilibrary.com/projects/yui3/ticket/2528089 ... For feature requests too: ...
775 Anthoni Shogan
anthoni.shogan Send Email
Jul 16, 2009
8:18 am
... Do this guys get unsubscribed from the list for spamming like this? Anthoni Shogan...
776 janos_pal_toth Send Email Jul 16, 2009
9:17 am
Adam, Thanks for that - I wasn't sure about the ie bug being a bug, maybe my eyes, that's why I asked. Cheers, Janos...
777 Jared Hirsch
jaredhirsch Send Email
Jul 16, 2009
11:41 am
This happens on exceptional-performance from time to time. Generally forwarding the message to abuse@yahoo leads to resolution....
778 Alex Leonard
alexleonard2006 Send Email
Jul 16, 2009
11:44 am
Just out of interest, since when has CSS Grids been dropped from YUI3? I was just thinking about starting to migrate new designs over to the new framework and...
779 Diogo Vincenzi
diogo.vincenzi Send Email
Jul 16, 2009
12:35 pm
This was done on the latest release of YUI3. I prompted Eric about it and he answered this: Matt, who has taken ownership of the YUI CSS engineering effort,...
780 Alex Leonard
alexleonard2006 Send Email
Jul 16, 2009
2:25 pm
Oh right, that sounds interesting. I guess there's no timeframe on when we can expect to see this? Cheers for filling me in. Alex...
781 Diogo Vincenzi
diogo.vincenzi Send Email
Jul 16, 2009
2:35 pm
No problem, And yeah, they didn't give any sort of timeframe for it and from the looks of it, I would doubt that we are going to see it in the initial GA...
782 Eric Miraglia
ericmiraglia Send Email
Jul 16, 2009
4:34 pm
Jared, Spammers get banned and their messages deleted as soon as we notice them. That practice has kept spam mostly in check. Just ignore this stuff when it...
783 adrian.kalbarczyk
adrian.kalba... Send Email
Jul 17, 2009
12:19 am
Hi, Forgive me if I missed something, but shouldn't be orders of attributes in Y.on and Y.later standardized? We call: Y.later(msec,scope,fn) and (applies to...
784 Greg Hinch
greg.hinch Send Email
Jul 20, 2009
1:22 am
When I have a Node instance, which in my case is referencing a button element, and I want to attach a listener for on click, I use myNode.on(&#39;click&#39;, fn) where...
785 adrian.kalbarczyk
adrian.kalba... Send Email
Jul 20, 2009
11:11 am
Hi, It is unclear in documentation (it is still in beta I think). The pattern of "on" is: myNode.on(event, fn, scope, params) where: event is DOM or custom...
786 greg.hinch Send Email Jul 20, 2009
3:41 pm
Hi Adrian, That's exactly what I'm trying to do, but scope and params don't seem to be properties you can pass to myNode.on. When fn is executed, the only...
787 Dav Glass
dav.glass Send Email
Jul 20, 2009
4:05 pm
In YUI3 we are promoting the use of Y.bind: http://developer.yahoo.com/yui/3/api/YUI~oop.html#method_bind For example: myNode.on(&#39;click&#39;, Y.bind(function() { ...
788 greg.hinch Send Email Jul 20, 2009
4:30 pm
Aha! Thank you Dav, that was exactly the answer I was looking for. Greg...
789 adrian.kalbarczyk
adrian.kalba... Send Email
Jul 20, 2009
4:42 pm
I'm using YUI3 b1 (http://yui.yahooapis.com/3.0.0b1/build/yui/yui-min.js) and it works. Are there plans to disable this functionality? Adrian...
790 adrian.kalbarczyk
adrian.kalba... Send Email
Jul 20, 2009
5:21 pm
Hi, Firebug can show contents of JS objects. If you are using console.log(object), link to DOM tab is shown. The same is when using Y.log, but only until you...
791 Lucas Smith
y_lsmith Send Email
Jul 20, 2009
5:40 pm
... Adrian, It's a great suggestion, and definitely a common issue. I had in mind to build a plugin for Console for just such a purpose, but it's good to hear...
Messages 759 - 791 of 950   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help