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...
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...
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...
... 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...
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...
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...
... 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...
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...
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...
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...
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...
... 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: ...
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...
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,...
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...
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...
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...
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('click', fn) where...
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...
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...
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('click', Y.bind(function() { ...
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...
... 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...