Hey guys, I'm enjoying the YUI 3.x but there's something that is annoying me and that's one of the main reasons I believe it will be a problem for everyone who...
... Normally you should use a single instance, and request what you need as you go -- this works fine. The issue you are demonstrating here is known, and is...
Hey Renato, As you mentioned, this issue is also affecting yui2.x, and we have been discussing it for a while. In your example you have two subsequence...
Referring to the www.yahoo.com <http://www.yahoo.com> page, the horizontal menu bar roughly shows: Yahoo! Home My Yahoo! How would go about doing this is...
CW - The MenuNav plugin is design to support drop-down menu navigation. The example that you site from the homepage isn't drop-down navigation. Therefore, I...
... If you look at YUI 2 widgets, you'll find that one widget handles the content, and the overlay handles the popup and framing. The pattern is pretty...
Hello all, I'm playing with the latest YUI3 code from github and testing its integration with our existing code base. I've hit a situation where I've used...
Hi Logan, ... Yep, you can do this: var node = Y.get(selector); var rawNode = Y.Node.getDOMNode(node); Thanks, J....
Jamu Kakar
jkakar@...
Apr 2, 2009 9:56 pm
568
Hi, Mock objects do work in the way you've described, but there's some scoping issues with your code which are causing the error. The method webRequest returns...
... I am actually rather surprised by this answer. The MenuNav plugin has some features that make it rather attractive for building new widgets. I recently...
Hi, I'm still working on it. There are few issues with the get utility (basically I want to implement the cache at the get utility level instead of doing it at...
Maris, MenuNav is a technical demonstration of what we can accomplish with YUI 3 in building specialized components encapsulating a well-known interaction...
... Thanks for the reply Eric, that makes perfect sense. I will be interesting to see where the community takes the light-weight approach in YUI: towards more...
There is an xss example as follows: http://developer.yahoo.com/yui/3/examples/io/io-xdr_clean.html But after I tried,only to find that it just supports this...
Maris, I agree with you that there's room for both. There is significant demand for interactive elements that are uncompromising wrt to k- weight at the...
Hi, thought I would get the builder project. Here is the result of a clone: rkmbp:Sites me$ git clone http://github.com/yui/builder Initialized empty Git...
I have created a simple Calendar widget using YAHOO.Calendar wrapped in a YUI 3 widget. I would now like to place this object in the 'body; section of a YUI 3...
Hello, I'm playing around with version 3.0 and have come across a couple of things related to the Node object that I wanted to ask. 1) I have augmented Node...
Hi, I tried it but result is the same: the first item is empty. Thanks ... From: Robert Koberg <rob@...> To: yui3@yahoogroups.com Sent: Tuesday, April...
I solved it by calling 'Y.all(arr)' instead, which actually makes sense given the array. Thank to Rob for putting me on the right track. Now if anyone...
I celebrated too quickly.... Although the returned nodelist is seemingly fine, it doesn't set the nodes when you do something like: var nodelist = Y.all(arr); ...
I think I finally solved it, by obtaining the native HTML node object from Node before storing it in the array. The final code looks like this: getAllFollowing...