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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 83 - 112 of 950   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
83 Satyam
satyamutsa Online Now Send Email
Sep 3, 2008
9:20 pm
I found debugging in YUI 3 quite tough. Most Node objects contain very few properties, the key is the yuid, which is a reference to some hash somewhere...
84 Kapil Bhatia
kapil1312 Offline Send Email
Sep 4, 2008
5:23 pm
hi, I just spent some time exploring YUI 3 and made some notes.Its pretty rough right now but I request you to check this and give your feedback and...
85 Caridy Patino
caridyp Offline Send Email
Sep 4, 2008
7:38 pm
Hey Satyam, this was my first thought when I look into the current custom events implementation, which is quite similar to the bubbling extension...
86 Satyam
satyamutsa Online Now Send Email
Sep 4, 2008
8:24 pm
Or built a plugin for the FireBug plugin, ;-) Otherwise, we are like decades ago when all the tools we had for debugging were printing to stderr or some other...
87 Satyam
satyamutsa Online Now Send Email
Sep 7, 2008
5:50 pm
A documentation issue: In the Attribute utility, http://developer.yahoo.com/yui/3/attribute/#configuration I guess it would be clearer to the reader in the...
88 Satyam
satyamutsa Online Now Send Email
Sep 7, 2008
8:17 pm
I need to get the left margin setting for a Node which I have stored as an attribute in 'barEl'. I did a parseInt of it, to strip the 'px' ... DIV...
89 Andrew
triptych999 Offline Send Email
Sep 7, 2008
11:43 pm
I was about to start working on a new layout with the reset-fonts-grids css when I suddenly realized the urls dont work! ...
90 Andrew
triptych999 Offline Send Email
Sep 7, 2008
11:48 pm
on this page http://developer.yahoo.com/yui/3/cssgrids/ look for "resert" :)...
91 Andrew
triptych999 Offline Send Email
Sep 7, 2008
11:50 pm
... http://yui.yahooapis.com/3.0.0pr1/build/reset-fonts-grids/reset-fonts-grids.css ... BTW please post where when the link is fixed, or there's a new link. ...
92 Eric Miraglia
ericmiraglia Online Now Send Email
Sep 8, 2008
2:48 am
Andrew, Here's a URL you can use for the three combined files right now: ...
93 freyaoo Offline Send Email Sep 8, 2008
3:01 am
You must get ele's style like this: this.get('barEl').getStyle('marginLeft') this.get('barEl').getStyle('borderLeft') this.get('barEl').getStyle('cssFloat') ...
94 Satyam
satyamutsa Online Now Send Email
Sep 8, 2008
6:32 am
That worked, thanks. I just moved code from 2.x and didn't think about this alternative. However, a) it would be good if this is documented in the Migration...
95 stevearussell Offline Send Email Sep 9, 2008
12:54 pm
Hi, How can I get YUI() to re-evaluate the items in a page that are draggable? I've used the example "Drag & Drop Utility: List reorder w/Bubbling" example...
96 Dav Glass
dav.glass Offline Send Email
Sep 9, 2008
2:28 pm
Steve -- You don't need to call the YUI() again, you can simply call the relevant parts of the example code. Like this (assuming that the new UL has an id of...
97 Satyam
satyamutsa Online Now Send Email
Sep 9, 2008
8:51 pm
Hi Satyen I didn't drop the project, but was unable to give it much attention. Finally, I got it right, or quite close. Both 2.5 and 3.0 versions of ...
98 Andrew
triptych999 Offline Send Email
Sep 9, 2008
9:55 pm
http://developer.yahoo.com/yui/3/api/Event.html#method_addListener When you look for "on" you find this: on static void on ( ) Y.Event.on is an alias for...
99 Dav Glass
dav.glass Offline Send Email
Sep 9, 2008
10:05 pm
Andrew -- It's marked as deprecated so you need to check the checkbox next to deprecated at the top of the page. Dav Dav Glass dav.glass@... ...
100 Andrew
triptych999 Offline Send Email
Sep 9, 2008
11:35 pm
Clicking the checkbox doesnt seem to change anything for the docs on that page for me... Also, if its depreciated, shouldnt you place the description of how ...
101 Andrew
triptych999 Offline Send Email
Sep 9, 2008
11:37 pm
I got it to work finally -- I guess what I mean is that you should change the Y.on doc to something more like this: static Boolean on ( el , type , fn , obj ,...
102 cwgabel Offline Send Email Sep 10, 2008
9:24 pm
I can see what the menu example should do in 2.5 on my Firefox browser just fine. YUI1 show the menu button, but clicking on it does nothing. Any ideas?...
103 Eric Miraglia
ericmiraglia Online Now Send Email
Sep 10, 2008
10:00 pm
cwgabel, I'm not exactly sure what you're asking, but it sounds like you're working on a YUI 2.5.2 Menu Control implementation. If that's the case, you'll...
104 mickael.menu Offline Send Email Sep 10, 2008
11:35 pm
Hello, I started to play with YUI 3 for two weeks now, and I tried to make an InputEx-like framework for YUI 3. Here is my attempt : ...
105 cwgabel Offline Send Email Sep 11, 2008
2:55 am
... browser ... nothing....
106 cwgabel Offline Send Email Sep 11, 2008
3:22 am
I downloaded the 3.0.0 PR1 project zip. File C:/yui/examples/menu/example01.html does not show the popup menu when you click on the button. Of course, it...
107 mickael.menu Offline Send Email Sep 11, 2008
6:06 am
Hello, There is no "examples/menu/example01.html" in the YUI 3 release, you have probably downloaded the YUI 2. Try here :...
108 kamiltrebunia Offline Send Email Sep 13, 2008
11:12 am
Take a look at this code samples: <p style="font-weight: bold;">Lorem <em>ipsum</em></p> <h2>Lorem <em>ipsum</em></h2> in both cases "ipsum" will have...
109 Andrew
triptych999 Offline Send Email
Sep 16, 2008
7:02 am
I'm doing Y.all("someselector").each(function(){ Y.log(this) }); However what I get back from the "this" is the nodelist each time. How do it get the...
110 Lucas Smith
y_lsmith Offline Send Email
Sep 16, 2008
3:48 pm
The function passed to each is passed each element in the collection in turn as the first parameter. Y.all("someselector").each(function(el){ Y.log(el); }); ...
111 Andrew
triptych999 Offline Send Email
Sep 18, 2008
11:07 pm
jQuery has really benefitted from having a really easy to set up way to create plugins for it. There aught to be something like this for YUI. Please consider...
112 diehardboss Offline Send Email Sep 19, 2008
2:36 pm
In your "YUI 3 CSS Foundation" examples, I don't see any samples for CSS on file upload in "CSS Base", "CSS Reset", and "CSS Fonts". The examples I'm looking...
Messages 83 - 112 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