Search the web
Sign In
New User? Sign Up
yui3 · YUI 3.x Discussion Forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 485 - 514 of 927   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
485
Does YUI have a way to tell if a script does not exist with the Get.script? The onFailure method doesn't seem to fire when the script doesn't exist. Is this...
mike.hobjob
Offline Send Email
Mar 2, 2009
7:55 pm
486
... Most browsers don't indicate there is was failure if the response code was a 404. If this is a problem for you, you can add logic to the onSuccess method...
Adam Moore
adam.moore
Offline Send Email
Mar 2, 2009
8:02 pm
487
I'm building a website which needs exactly 10px of space between al elements. But I can't find any information about how to manage the vertical spaces between...
erwin_odendaal
Offline Send Email
Mar 4, 2009
7:21 pm
488
Hey erwin_odendaal, ... The margins between the b's are the negative-margins difference, by default 1em, which is 13px if you're using YUI Fonts as well. This ...
Nate Koechley
nate.koechley
Offline Send Email
Mar 4, 2009
8:04 pm
489
I am creating a simple animation chain made up of 2 part, the first animation setup opacity to 0 to fade something out, then I want to wait 10 seconds and fade...
Zac
ztolley
Offline Send Email
Mar 4, 2009
8:48 pm
490
Hey Zac, You should not use an string in the setTimeout function, because the browser will try to use EVAL to evaluate that string, which means that you will...
Caridy Patino
caridyp
Online Now Send Email
Mar 4, 2009
9:03 pm
491
... Hi Zac, When a code snippet is passed as the first argument to setTimeout, it is executed in the window scope. So you are correct, now that there is a ...
Matt Sweeney
matt.sweeney
Offline Send Email
Mar 4, 2009
9:26 pm
492
Thanks for the advice, and thanks to Caridy too for a really speedy reply. I can see the advantage of using this syntax with regards to scope, I'm building a...
Zac Tolley
ztolley
Offline Send Email
Mar 4, 2009
10:56 pm
493
Hey Zac, There are few issues related with the on-demand loading process for modular applications. 1. if two different modules try to use the loader...
Caridy Patino
caridyp
Online Now Send Email
Mar 5, 2009
12:10 am
494
Nate, I will dive into it. Thanks, Erwin...
erwin_odendaal
Offline Send Email
Mar 5, 2009
8:43 am
495
Is the dispatcher ready? If not, can you provide a beta version? Thanks!...
pro1712
Offline Send Email
Mar 5, 2009
9:29 am
496
Almost, I will let you know as soon as I get the beta ready. Best Regards, Caridy...
Caridy Patino
caridyp
Online Now Send Email
Mar 5, 2009
2:44 pm
497
I joined a company recently which has a substantial YUI2-based code base as the senior JS developer. I'm thinking that a gradual switchover to YUI3 is the most...
emmett.thesane
Offline Send Email
Mar 6, 2009
12:58 pm
498
... Hi Emmett, To unwrap a node, use Y.Node.getDOMNode(): var yui_node = Y.get('#foo'); var raw_node = Y.Node.getDOMNode(yui_node); The function is listed in...
Maris Fogels
vednis
Offline Send Email
Mar 6, 2009
3:47 pm
499
Thanks Mars. That does the trick. However, it's actually NOT in the Node API docs (or any of the YUI3 docs), I'm afraid: ...
emmett.thesane
Offline Send Email
Mar 6, 2009
3:58 pm
500
I'm just not grokking the problem here that is keeping my widget from pulling the <p> node into its 'paragraph' attribute on instantiation using the...
reflexiv1
Offline Send Email
Mar 6, 2009
4:34 pm
501
... Oops, you're right, it is undocumented. I've filed a bug about it: http://yuilibrary.com/projects/yui3/ticket/2526043 Maris...
Maris Fogels
vednis
Offline Send Email
Mar 6, 2009
4:52 pm
502
Hi, The HTML_PARSER is used to mine values from inside a content box which is already on the page. If you're looking for the <p>Hi</p>, you'd need to wrap it...
Satyen Desai
sdezzi
Offline Send Email
Mar 6, 2009
5:44 pm
503
... Thank you! This made a light bulb go on in my brain and my widget can now find nodes on the page! Andy...
reflexiv1
Offline Send Email
Mar 6, 2009
6:59 pm
504
I'm still getting my head around the use function to say I want to write some code that uses component x. I can see why I want to wrap my stuff up into a...
Zac
ztolley
Offline Send Email
Mar 8, 2009
1:29 pm
505
Zac, The use function takes multiple arguements, with the last one being the callback function. YUI().use('node', 'io-base', function(Y){ ... Do something with...
agentorangejdm
Offline Send Email
Mar 8, 2009
2:17 pm
506
Hello, I am trying to do a simple file upload like this, assuming that we have a file input in the form, and that the server-side 'uploader.cgi' script does...
laurentfortin50
Offline Send Email
Mar 10, 2009
6:24 pm
507
It just seems like returning the result array would be so much more useful in any situation. Why does Array.each return the YUI instance? Thanks, Andy...
reflexiv1
Offline Send Email
Mar 10, 2009
7:23 pm
508
"Include" these modules: 'io-base', 'io-upload-iframe'...
pro1712
Offline Send Email
Mar 11, 2009
11:15 am
509
Ok now it's working. Thanks for your reply!...
laurentfortin50
Offline Send Email
Mar 11, 2009
2:56 pm
510
The ANT-based component build tool that we use to build YUI components from their source code is now publicly available on GitHub. This is a component build...
Eric Miraglia
ericmiraglia
Offline Send Email
Mar 11, 2009
8:45 pm
511
Hi, What is the math used to calculate font sizes for YUI: /* ** ** Font sizes: Pixel to percent conversion: ** 10px = 77% ** 11px = 85% ** 12px = 93% **...
micky97402
Offline Send Email
Mar 12, 2009
5:38 am
512
... Y.each delegates to the appropriate each function, and returning the instance helps to provide some level of chaining support. It also seems a bit...
Adam Moore
adam.moore
Offline Send Email
Mar 13, 2009
7:03 pm
513
I was naively expecting to be able to access the various parts of the 'margin' css class through getStyle, but this doesn't work for me. ... "-35px 0pt 0pt...
Michael Hudson
michaelhudso...
Offline Send Email
Mar 15, 2009
10:19 pm
514
... I figured it out: I need to say "marginTop". Cheers, mwh...
Michael Hudson
michaelhudso...
Offline Send Email
Mar 15, 2009
11:11 pm
Messages 485 - 514 of 927   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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