See the examples in a new window:
See the examples in a new window:
Links does not exist.
Bubbling full API based on YUIDocs
Finally I got some time to review all the comments in the source code to generate the full API documentation based on YUI Docs, check the new documentation here. (new)
Accordion implementation to YUI 3.x
I spent some time creating a new plugin for YUI 3.x to implement the accordion features. Hopefully, this new plugin will be included within YUI 3.1 amoung other widgets and plugins. (hot)
- YUI3 Fork in github
- Check a preliminar example here
Using the YUI TabView Control with the Dispatcher Plugin
YUI Dispatcher Plugin and how to use it along with the YUI TabView to load on-demand content using the YUI Connection Manager.
The Bubbling Technique & Custom Event, YUI’s Secret Weapon
In this article I’ll share my experiences in the event-driven programming within the web browser and show how the Bubbling Library, combined with YUI’s Custom Event capabilities, can create an unobtrusive behavioral layer suitable for powerful web applications.
Event-Driven Web Application Design
I recommend you to read carefully the Christian Heilmann's paper, where he wrote about how to plan an Event-Driven application, and how this technique will become the future of the web application as a result of an evolutive process.
A JavaScript Module Pattern
Eric Miraglia's detailed explanation of how to use the closures and specifically the module pattern (singlenton) as a flexible and multi-funcional structure...
Yahoo! UI Library (YUI)
YUI Official Website at the Yahoo! Developer Network.
YUI Official Forum
Get help and share your knowledge thru the YUI Official Forum.
problem in IE6
hi,
I tried to use your dialog plugin in YUI.
i just added this to call your alert dialog using window object to avoid changes in existing code...
window.alert = function(str)
{
var tconfig={
html:str}
var a=YAHOO.Ze.UI.Dialog.notify(tconfig);
}
this is working in FireFox, but in IE it freeze, It is not responding when i click on ok.
It gives that alert window, but when i hit ok, it not doing anything, but i am able to drag that window. But it is not closing Am i missing anything here... please let me know your suggestion...
RE: problem in IE6
Arivoli, this error is no related with the dispatcher plugin. You're trying to modify the browser alert behavior, and considering that alert will stop the JS execution, I don't believe that you can change that. My suggestions is: implement a global behavior for this task, and call your method directly, instead of calling window.alert.
Dispatcher Issue using YUI 2.7.0 Uploader
Hi Caridy - I'm trying to use the Dispatcher plugin to load a YUI dialog box containing the YUI uploader component. It loads correctly the first time, but subsequent attempts to load the dialog fail to initialize the uploader. Any advice? Have you tried this before? How/where should I post my code? Thanks!
RE: Dispatcher Issue using YUI 2.7.0 Uploader
@Sam:
- Are you using Bubbling 2.1?
- Can you send me a test-case to dig in this issue?