Skip to search.
yui3 · Archival: YUI 3.x Discussion Forum

Group Information

  • Members: 430
  • Category: Web Design
  • Founded: Jul 29, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 820 - 851 of 950   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
820 dmitrii_golub Online Now Send Email Aug 3, 2009
7:03 am
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...
821 janos_pal_toth Offline Send Email Aug 3, 2009
9:46 am
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....
822 Lucas Smith
y_lsmith Offline Send Email
Aug 3, 2009
3:41 pm
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? ...
823 dmitrii_golub Online Now Send Email Aug 3, 2009
6:38 pm
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...
824 Satyen Desai
sdezzi Offline Send Email
Aug 3, 2009
6:50 pm
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...
825 Lucas Smith
y_lsmith Offline Send Email
Aug 3, 2009
9:58 pm
Something like this? http://yuiblog.com/sandbox/yui/v300b1/examples/stylesheet/css_parse.html Hope this helps, Luke...
826 jamesb.orion Offline Send Email Aug 3, 2009
10:57 pm
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...
827 Dav Glass
dav.glass Offline Send Email
Aug 3, 2009
11:39 pm
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');...
828 dmitrii_golub Online Now Send Email Aug 3, 2009
11:50 pm
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,...
829 jamesb.orion Offline Send Email Aug 4, 2009
12:50 am
... 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...
830 Dav Glass
dav.glass Offline Send Email
Aug 4, 2009
3:00 am
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...
831 janos_pal_toth Offline Send Email Aug 4, 2009
9:02 am
Sounds promising, thanks. Janos...
832 Paolo Nesti Poggi
paolonesti Offline Send Email
Aug 4, 2009
10:32 am
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...
833 jamesb.orion Offline Send Email Aug 4, 2009
9:49 pm
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...
834 Mark Jarecki
urbanyte Offline Send Email
Aug 5, 2009
5:42 am
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...
835 Maris Fogels
vednis Offline Send Email
Aug 5, 2009
2:12 pm
... <script type="text/javascript"> YUI().use('foo', function(Y) { // Create the object: Y.a_shared_object; }); </script> <script type="text/javascript"> ...
836 Dav Glass
dav.glass Offline Send Email
Aug 5, 2009
3:24 pm
I don't see this in my performance tesing.. Please file a bug with a repro case & I will look into it.. Dav ... -- Dav Glass davglass@... ...
837 jamesb.orion Offline Send Email Aug 6, 2009
12:50 am
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...
838 jamesb.orion Offline Send Email Aug 6, 2009
2:16 am
... I've found out a little more information by turning on _debugShim. The drop event only fires when the cursor is inside the drop's shim (even in...
839 Dav Glass
dav.glass Offline Send Email
Aug 6, 2009
2:32 am
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...
840 joaco182 Offline Send Email Aug 6, 2009
3:52 pm
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...
841 Mark Jarecki
urbanyte Offline Send Email
Aug 7, 2009
4:43 pm
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 ...
843 ‘å‚«”’Â...
essential05 Offline Send Email
Aug 13, 2009
2:44 am
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...
844 alexshelkov Offline Send Email Aug 14, 2009
8:23 pm
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"...
846 Lucas Smith
y_lsmith Offline Send Email
Aug 14, 2009
9:44 pm
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: {...
847 alexshelkov Offline Send Email Aug 16, 2009
2:24 pm
... Thank you for answer, it is realy help....
848 godkane1 Offline Send Email Aug 16, 2009
11:09 pm
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...
849 Lucas Smith
y_lsmith Offline Send Email
Aug 17, 2009
12:35 am
It's more efficient to create larger DOM structures using innerHTML templates. Console and ConsoleFilters use a template system that includes placeholders...
850 tomasarehaavet Offline Send Email Aug 17, 2009
1:21 pm
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...
851 janos_pal_toth Offline Send Email Aug 18, 2009
4:14 pm
This one is quite annoying if one has multi level dependencies, would be great to see a fix on master soonish :)...
Messages 820 - 851 of 950   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help