I have a function that formats a column to delete the row if the cell of this column is clicked. I want to reference the datatable row of the column that was...
Oh, oops. Here's another solution. It's CSS-based and doesn't require any changes in JavaScript, so you can keep all of your UI revisions to CSS. It does...
Hi, I have a problem in IE using tabview (generate using js) and its dynamic datasource. THe situation is, I got several tabs that use datasource, all...
hi, thanks for your help. i am actually dealing with a regular form, no uploads. i just don't understand setForm method. how does it transfer the data to...
All, I have a threshold input with a connected slider. I have input 'A' that can update slider 'B' 'onblur39; and the slider 'B' can update input 'A' when the...
Can you post the code to your example? Also using the same id for multiple divs is not a good idea, which divs are you refering to? The content divs for the...
Hi Eric, I am new to YUI. I need help on Data table. I want to generate a data table with collpase/expand feature for each record in the data table and also...
I found the answer. After creating the nodes, add node.check(). ie, var tmpNode = new YAHOO.widget.TaskNode("Check" + i, tree.getRoot(), false); ...
Unless I am missing something with your question, I think it is easier than you are making it out to be. I use setForm to async form submissions for both...
after heavly investigating the source code here is what i think i figured out: when you run setForm the function saves 2 private variables (and maybe more): 1....
okay, thanks for showing me the code. that seems to go along with what i am slowly understanding. well first i must ask you if you stop the default action of...
Here is the code: extract from index.html: YAHOO.example.init = function() { var tabView = new YAHOO.widget.TabView({id: 'topmenu39;}); tabView.addTab(new...
... You're making this far too hard on yourself. 1) The first argument of setForm is the HTML form's ID or a reference to the form object. The second and...
i understand that. but i am thinking of a way to improv thr yui library. i think the connection manager is used for "ajax"ed form submittion often and it can...
... wrote: <snip> ... One of the reasons why setForm requires a separate interface is so that you can indicate if the form itself contains an input type of ...
Hi, I am new to datatable and want to populate my table from server component using JSp. I have tried so that my JSP return a Json format string to the...
Hello everyone, i am using datatable build from markup, and when clicking on a cell, i want to execute an async request retrieving json data, but reading...
Hi, Along the lines of the getDay() advice, you can combine the integer value Date.getDay() returns with the array of long weekday strings which the Calendar...
I don't think your link to the tracker is corresponding to what you're talking about but I agree that both should be in sync. In the doc it is written that...
Ok. Just found it out in the tracker : https://sourceforge.net/tracker/index.php?func=detail&aid=1699200&group_id=165715&atid=836476 deleteRow is not deleting...
Hello, I would like to show a list of tasks. These tasks are related by parent-child relationship and can have unlimited level of nesting. Has anyone managed...
There is a brief example of how to send a form on the Connection Manager cheat sheet. Have you seen this? Its the first example in the Solutions section. ...
Hello, I would like to load many (around 150) menu nodes (a product catalogue) into a treeview Which is the faster and more maintainable (I need to update -...
Stefano - Have you looked into the dynamic load functionality? If your nodes are only changing every 2-3 months it seems like a caching solution would be...
Hey Thomas. thanks for your time in explaining. i now understand how to do a form submittion with yui. i also now know how to stop the normal flow of the form...