rrrit, Not yet. We are looking to have complete coverage of the YUI 2.x utility-level functionality when YUI 3.0 reaches beta in Q1 next year. Dav Glass...
Hi Matt Thanks for replying. They are no two separate issues, I know how to use Firebug and how to load a raw or debug version of YUI, my question is about...
... if it is ... The transaction timeout capability exists in IO as well as in YUI 2.x Connection Manager. This is an explicit, client-initiated abort...
I have nothing more to add, but I want to support this complain - debugging applications is the biggest issue with this library for me, and I didn't even get...
It looks like there is a bug in selectors implementation. For example take a look at this test website: http://frrua.appspot.com/ There is global Y object (for...
... (http://svn.cometd.com/trunk/bayeux/bayeux.html#toc_10) In ... understanding, just ... problem ... message over a ... Sorry; I confused myself in my...
In working with HTML forms, it seems necessary sometimes to use brackets in the name to pass form data to be handled as an array in PHP (in a multi-select, or...
Hi, according to http://www.w3.org/TR/REC-html40/types.html#type-id "ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number...
In my scenario I need to make two requests. Some of the data of the 2nd request come from the result of the 1st request. With the queue, i could chain the...
btw, the docs use "Y.queue" but the actual code is "Y.io.queue" http://developer.yahoo.com/yui/3/io/#queue I think queue deserves to be promoted to the top...
Hi guys, I have been playing around with the Custom Events, and there are few things that I noticed: Here is the scenario: I want to define two different...
Think in a different way, i found a simple solution to chain 2 connections. 1. make a custom event and subscribe to it 2. make io request 3. onSuccess of the...
... This appears to be a bug. We will look into it (you can file a bug if you wish to be notified when the issue is addressed). ... Thanks, we will fix this...
... This looks like an abuse of the PHP feature for handling form field collections. This is the way it is normally used (brackets only in the name field): ...
You're not wrong, I realize it's out of spec... but was wondering if there was a recommendation to better approach the case. I don't think brackets in the name...
I'd like to move options between two select lists, lets call them "available" and "assigned". The first step I'm trying to accomplish is that when a user...
... Hi, please note that this is a VERY dangerous pattern and many languages do not support it at all, depending on the implementation of iterating. What you...
hi.. i've got a stupid question... let's say i have: var x = new YUI({base:'js/yui3pr1/build/'}) var test = "1" x.use('node',function(Y){ test = "0" }); ...
... Hi, I have not run your code, but it looks to me that the callback function(Y){...} is executed upon successful loading of the "node" module into YUI....
hi, i have a class that extend base. the class is for implementing a third part specification so I want to use the subscribe method for my app user, i.e. ...
Hi, Not sure I fully understand the final goal or your proposed path (override "on" to call superclass publish), however as for the generic question: You have...
thank you. that's exactly what I want. I'm going to override both on() and subcribe(). for on, i use it to call the parent's subscribe method. so i could use...
... after construction. Yes, it can be over-ridden on the class itself (viz. no need to wait till instantiation), was just pointing out that the current ...
Hi, I'm experimenting with the Draggable Portal example code, trying to create a portal where the modules are allowed to have variable width (or at least...
i just realize there is actually a Y.Queue . very nice. for many API, e.g. subscribe to an event, we can set the running context of a function. But for Queue,...