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 139 - 168 of 927   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
139
rrrit, Not yet. We are looking to have complete coverage of the YUI 2.x utility-level functionality when YUI 3.0 reaches beta in Q1 next year. Dav Glass...
Eric Miraglia
ericmiraglia
Online Now Send Email
Oct 1, 2008
2:48 pm
140
Hi Matt Thanks for replying. They are no two separate issues, I know how to use Firebug and how to load a raw or debug version of YUI, my question is about...
Satyam
satyamutsa
Offline Send Email
Oct 1, 2008
5:16 pm
141
... if it is ... The transaction timeout capability exists in IO as well as in YUI 2.x Connection Manager. This is an explicit, client-initiated abort...
tssha
Online Now Send Email
Oct 1, 2008
6:24 pm
142
I have nothing more to add, but I want to support this complain - debugging applications is the biggest issue with this library for me, and I didn't even get...
kamiltrebunia
Offline Send Email
Oct 1, 2008
6:39 pm
143
thanks for the useful information. For Bayeux/Comet, the cometd has defined two modes, a long-polling and a streaming mode....
Mingfai
mingfai.ma
Offline Send Email
Oct 1, 2008
8:14 pm
144
It looks like there is a bug in selectors implementation. For example take a look at this test website: http://frrua.appspot.com/ There is global Y object (for...
kamiltrebunia
Offline Send Email
Oct 1, 2008
10:31 pm
145
... (http://svn.cometd.com/trunk/bayeux/bayeux.html#toc_10) In ... understanding, just ... problem ... message over a ... Sorry; I confused myself in my...
tssha
Online Now Send Email
Oct 1, 2008
10:43 pm
146
In working with HTML forms, it seems necessary sometimes to use brackets in the name to pass form data to be handled as an array in PHP (in a multi-select, or...
blholub
Offline Send Email
Oct 3, 2008
6:04 am
147
Hi, according to http://www.w3.org/TR/REC-html40/types.html#type-id "ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number...
Michal Frackowiak
michal_frack...
Offline Send Email
Oct 3, 2008
11:43 am
148
In my scenario I need to make two requests. Some of the data of the 2nd request come from the result of the 1st request. With the queue, i could chain the...
mingfai.ma
Offline Send Email
Oct 5, 2008
8:21 am
149
btw, the docs use "Y.queue" but the actual code is "Y.io.queue" http://developer.yahoo.com/yui/3/io/#queue I think queue deserves to be promoted to the top...
Mingfai
mingfai.ma
Offline Send Email
Oct 5, 2008
12:20 pm
150
Hi guys, I have been playing around with the Custom Events, and there are few things that I noticed: Here is the scenario: I want to define two different...
Caridy Patino
caridyp
Online Now Send Email
Oct 5, 2008
3:22 pm
151
Think in a different way, i found a simple solution to chain 2 connections. 1. make a custom event and subscribe to it 2. make io request 3. onSuccess of the...
Mingfai
mingfai.ma
Offline Send Email
Oct 6, 2008
3:55 am
152
hi, with an event: - declared as: this.publish("MyClass:testing"); - fired as: this.fire("testing", 'arg0value'); - subscribed as : xxx.subscribe('testing',...
Mingfai
mingfai.ma
Offline Send Email
Oct 6, 2008
6:58 am
153
... Caridy, the broadcast flag will let you do this in PR2 (the feature wasn't implemented in time for PR1). ...
Adam Moore
adam.moore
Online Now Send Email
Oct 6, 2008
6:06 pm
154
... This appears to be a bug. We will look into it (you can file a bug if you wish to be notified when the issue is addressed). ... Thanks, we will fix this...
Adam Moore
adam.moore
Online Now Send Email
Oct 6, 2008
6:17 pm
155
... This looks like an abuse of the PHP feature for handling form field collections. This is the way it is normally used (brackets only in the name field): ...
Adam Moore
adam.moore
Online Now Send Email
Oct 6, 2008
6:36 pm
156
... Sorry for the error. The documentation will be corrected. ... could be ... Thank you for the suggestion. We will consider it. Regards, Thomas...
tssha
Online Now Send Email
Oct 6, 2008
7:03 pm
157
You're not wrong, I realize it's out of spec... but was wondering if there was a recommendation to better approach the case. I don't think brackets in the name...
blholub
Offline Send Email
Oct 7, 2008
12:14 am
158
I'd like to move options between two select lists, lets call them "available" and "assigned". The first step I'm trying to accomplish is that when a user...
blholub
Offline Send Email
Oct 8, 2008
5:52 am
159
... Hi, please note that this is a VERY dangerous pattern and many languages do not support it at all, depending on the implementation of iterating. What you...
Michal Frackowiak
michal_frack...
Offline Send Email
Oct 8, 2008
10:03 am
160
hi.. i've got a stupid question... let's say i have: var x = new YUI({base:'js/yui3pr1/build/'}) var test = "1" x.use('node',function(Y){ test = "0" }); ...
danutzdobrescu
Offline Send Email
Oct 8, 2008
12:07 pm
161
... Hi, I have not run your code, but it looks to me that the callback function(Y){...} is executed upon successful loading of the "node" module into YUI....
Michal Frackowiak
michal_frack...
Offline Send Email
Oct 8, 2008
12:55 pm
162
Hi Brian, This is a bug that we will address in a future release. - Matt...
Matt Sweeney
matt.sweeney
Online Now Send Email
Oct 8, 2008
11:20 pm
163
hi, i have a class that extend base. the class is for implementing a third part specification so I want to use the subscribe method for my app user, i.e. ...
Mingfai
mingfai.ma
Offline Send Email
Oct 8, 2008
11:55 pm
164
Hi, Not sure I fully understand the final goal or your proposed path (override "on" to call superclass publish), however as for the generic question: You have...
Satyen Desai
sdezzi
Online Now Send Email
Oct 9, 2008
12:36 am
165
thank you. that's exactly what I want. I'm going to override both on() and subcribe(). for on, i use it to call the parent's subscribe method. so i could use...
Mingfai
mingfai.ma
Offline Send Email
Oct 9, 2008
12:45 am
166
... after construction. Yes, it can be over-ridden on the class itself (viz. no need to wait till instantiation), was just pointing out that the current ...
Satyen Desai
sdezzi
Online Now Send Email
Oct 9, 2008
1:09 am
167
Hi, I'm experimenting with the Draggable Portal example code, trying to create a portal where the modules are allowed to have variable width (or at least...
freddebostrom
Offline Send Email
Oct 10, 2008
12:02 pm
168
i just realize there is actually a Y.Queue . very nice. for many API, e.g. subscribe to an event, we can set the running context of a function. But for Queue,...
Mingfai
mingfai.ma
Offline Send Email
Oct 11, 2008
6:14 am
Messages 139 - 168 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