I found debugging in YUI 3 quite tough. Most Node objects contain very few properties, the key is the yuid, which is a reference to some hash somewhere...
hi, I just spent some time exploring YUI 3 and made some notes.Its pretty rough right now but I request you to check this and give your feedback and...
Or built a plugin for the FireBug plugin, ;-) Otherwise, we are like decades ago when all the tools we had for debugging were printing to stderr or some other...
A documentation issue: In the Attribute utility, http://developer.yahoo.com/yui/3/attribute/#configuration I guess it would be clearer to the reader in the...
... http://yui.yahooapis.com/3.0.0pr1/build/reset-fonts-grids/reset-fonts-grids.css ... BTW please post where when the link is fixed, or there's a new link. ...
You must get ele's style like this: this.get('barEl').getStyle('marginLeft') this.get('barEl').getStyle('borderLeft') this.get('barEl').getStyle('cssFloat') ...
That worked, thanks. I just moved code from 2.x and didn't think about this alternative. However, a) it would be good if this is documented in the Migration...
Hi, How can I get YUI() to re-evaluate the items in a page that are draggable? I've used the example "Drag & Drop Utility: List reorder w/Bubbling" example...
Steve -- You don't need to call the YUI() again, you can simply call the relevant parts of the example code. Like this (assuming that the new UL has an id of...
Hi Satyen I didn't drop the project, but was unable to give it much attention. Finally, I got it right, or quite close. Both 2.5 and 3.0 versions of ...
http://developer.yahoo.com/yui/3/api/Event.html#method_addListener When you look for "on" you find this: on static void on ( ) Y.Event.on is an alias for...
Clicking the checkbox doesnt seem to change anything for the docs on that page for me... Also, if its depreciated, shouldnt you place the description of how ...
I got it to work finally -- I guess what I mean is that you should change the Y.on doc to something more like this: static Boolean on ( el , type , fn , obj ,...
I can see what the menu example should do in 2.5 on my Firefox browser just fine. YUI1 show the menu button, but clicking on it does nothing. Any ideas?...
cwgabel, I'm not exactly sure what you're asking, but it sounds like you're working on a YUI 2.5.2 Menu Control implementation. If that's the case, you'll...
I downloaded the 3.0.0 PR1 project zip. File C:/yui/examples/menu/example01.html does not show the popup menu when you click on the button. Of course, it...
Take a look at this code samples: <p style="font-weight: bold;">Lorem <em>ipsum</em></p> <h2>Lorem <em>ipsum</em></h2> in both cases "ipsum" will have...
I'm doing Y.all("someselector").each(function(){ Y.log(this) }); However what I get back from the "this" is the nodelist each time. How do it get the...
The function passed to each is passed each element in the collection in turn as the first parameter. Y.all("someselector").each(function(el){ Y.log(el); }); ...
jQuery has really benefitted from having a really easy to set up way to create plugins for it. There aught to be something like this for YUI. Please consider...
In your "YUI 3 CSS Foundation" examples, I don't see any samples for CSS on file upload in "CSS Base", "CSS Reset", and "CSS Fonts". The examples I'm looking...