I'm trying to offer free support, even when I don't have too much time to dealing with the API documentation and the examples, considering that I do all this stuff in my free time, but I promise you that you'll get response and that I'll do my best to solve your problems. Also, there is people who use this library, and have enough experience to help you, just post your questions in the YUI Official Forum, and I'm sure you will get help quickly. There is few ways to get support:
- Email me: caridy at gmail.com
- Contact me thru this website
- Post your questions in the ydn-javascript mailing list located on Yahoo! Developer Network

How to combine tree and datatable
I do not know how to combine tree and datatble as the grouped data grid
Please help me
Thanks
RE: How to combine tree and datatable
Hey Bao,
The YUI 2.6 Datatable do not supports grouping... and the bubbling library extension do not extend the datatable. Sorry about that.
Bubbling and Drag and Drop
Hi,
I have I quite tricky layout:
1) Several DIV's elements inside a master DIV
2) I would like to be able to track "click" events for every single DIV, identifing witch one was clicked,
3) But the "master DIV" is draglabe, implements YUI drag & drop, so I can move it.
How can I implment that?
Thanks
Problems with accordion and button
Hi,
I'm using YUI 2.7.0 and the accordion widget. I want to put some YUI buttons in an accordion, but I have some errors when the button's event fires.
Firebug Output is: S.getAttribute is not a function.
It seems like bubbling.min.js takes the event but it can't treat it.
Can you help me? It's a problem of YUI version? Could you give me an example?
Thanks
Dispatcher Issue with 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?
Dynamic Navigation Theory
Hello,
Please can you explain how you load the content in the DYNAMIC-EREA DIV ?
Is it possible for you to send to me a zipped working subfolder ?
Thank you
Bugs and fixes
Hi Caridy,
Where do you want bug reports/fixes? Here's one, but let me know if you'd prefer them logged elsewhere.
In bubbling library 2.1 there's a problem if you have a multi-select and deselect all items in it. bubbling throws errors at line 88 and 208. It's because selectedIndex is -1. Fixes are, I think:
line 88:
_target.oldValue = (YAHOO.env.ua.webkit?newRef.getAttribute('default'):(newRef.selectedIndex>=0?newRef[newRef.selectedIndex].value:null));
line 208:
conf.value = conf.select.selectedIndex >= 0 ? conf.select[conf.select.selectedIndex].value : null;
Thanks, as ever,
Matt
Sorry
And now I've just seen the fixes on github... Apologies!
Event Error
Hey
I am using the dispatcher plugin with multiple tabs to load external html files. I am having event related issues
These files have relevant yui datatables, that retrieve their information via an asyncrequest. I am not caching any data, having the tabs reload on each click. Although the data is generated, i get the following error in fire on each click,
M.call is not a function
[Break on this error] var R=N.compatMode;if((R||H)&&!C){Q=(R... I[S][this.WFN];delete I[S][this.FN];
This is from yahoo.event.js file. Here is the tab html,
http://pastebin.com/vR7TcsXR
Event Error
Using asyncrequest for my php (that get the data for the datatables) files seems to have fixed the issue.
However Mozilla has crashed a couple of times when I use the tabs. Any info on this?
Display Issue
Hey
I have a tabview layout with datable tables loading data from a remote source. Sometimes when I click between tabs, the tables are not being rendered correctly.
For example,
Tab1 -> loads Datatable1
Tab2 -> loads Datatable2
sometimes the transition works well but sometimes, when i say, click on tab2, the datatable from tab2 is superimposed onto the datatable in tab2. I can't really recreate this for a demo since it happens very randomly. Any suggestions?
RE: Display Issue
Hello Kiran,
Normally this kind of issues are related with the CSS position ruleset. Try to define the container of the elements (in this case the container of each tab) as relative (position: relative;). That should be enough.
The other option is to wait for onLoad even (check dispatcher documentation), and try to handle the height/width of the tab container manually. But, as I said, position:relative should do the trick.
Best Regards,
Caridy