There are some javascript css parsers in the internet, but do you know any yui specific? Or may be you can share your ideas about reuse production ready yui...
Hi, I know there's no dialog widget in yui3 yet, but I think the fixedcenter attribute might belong to Overlay - wondering if there are plans to implement it....
YUI has the StyleSheet utility, but this may not be exactly what you're looking for. What sort of API are you expecting? Input, output? Example use case? ...
Yes, sure: I would like to devide screen into 2 parts, first one is textarea with pure css and button Apply. Here you can change any styles and click apply...
Yes. It's on the roadmap for the 3.1 release. It will attempt to leverage CSS position:fixed for a smoother experience, and will be usable for any positioned...
Using the new yui3 drag and drop module and I've found that when the element I'm trying to drag is an anchor, I can't drag it. If the element being dragged is...
By default A tags are in the invalidHandle list.. Just remove it when you create the dd instance: var dd = new Y.DD.Drag({ node: '#drag' }).removeInvalid('a');...
wow it's exactly what I need:) Nice thing, when you imagine smth. ask at groups and... Ba! here it is:) Like a gift, really:) It's use Alex Gorbachev's script,...
... Thanks Dav that did the trick. If the anchor tag is meant to be invalid tho, then maybe the following behavior I observed is a bug: "you can't drag it [the...
I wouldn't think it's a bug. It's just a bad idea in general to drag a link. Since it has a default action to it, most browsers freak out about it.. If you can...
Hi, I use Y.log ("my message: "+Y.dump(someObject);) a lot to get insight in the flow of my applications. I've noticed that when I dump an event, IE raises an...
I'm trying to find out more about the 'event' object that's passed to all the drag drop events (specifically 'drop:over' in this case). I've noticed that it...
Hi there, I'm implementing a page that uses DD scroll to reorder items in a long list (the <li> elements have combinations of images, textareas and text within...
When using DDConstrained to stickX or stickY I've found that the 'intersect' dragMode doesn't behave as expected. The cursor has to be within a certain...
Please file a bug with the repro case, posting a bug to the list is pointless.. Dav ... -- Dav Glass davglass@... blog.davglass.com + Windows: n. - The...
Does anyone have a functioning version of YUI3 running on top of rhino? I have tried several times to get this working using the env.js script provided by John...
No worries. Am filing to the bug list now. Am still uncertain whether this is a Firefox, YUI 3 or implementation bug. Thanks for this fantastic library! Mark ...
Hi There I am thinking something along this line. Just not sure if there is anyway to make that the response value of function genericPostRequest pass as...
Hello, I try create my own module for YUI: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type"...
We're making this smarter for 3.0 GA, but in the mean time, you have to dd the requirement to the module definition in your YUI config. { modules: {...
I have been playing around with YUI3 and wanted to create my own widget with input boxes, labels, and buttons. What I found odd is that when I was looking at...
It's more efficient to create larger DOM structures using innerHTML templates. Console and ConsoleFilters use a template system that includes placeholders...
Hello, I've encountered a situation in which it would be really nice to have two different EventTarget objects send CustomEvents to each other. Does anybody...