Tagged Questions
The yui-datasource tag has no wiki summary.
3
votes
1answer
4k views
yui, form submission and data table
I'm a Java programmer, but not a JavaScript programmer. I have just discovered YUI, and am trying to get started using it. What I'd like to try and do is have the query form at the top of the page, ...
1
vote
1answer
241 views
How do I make an XHRDataSource request to a Django server in YUI?
I'm using post, and the YUI documentation example code isn't working.
YAHOO.util.Event.addListener(window,"load",function()
{
var columnDefs =
[
{key:"url", sortable:true, ...
1
vote
2answers
734 views
Using cellUpdateEvent with YUI DataTable and JSON DataSource
I'm working with a UI that has a (YUI2) JSON DataSource that's being used to populate a DataTable. What I would like to do is, when a value in the table gets updated, perform a simple animation on the ...
0
votes
1answer
144 views
How do you hook an event to a datasource in YUI?
http://developer.yahoo.com/yui/datasource/#events
I'm trying to use the responseParseEvent but I don't know how to hook into into my datasource object because YUI doesn't provide any examples.
...
0
votes
1answer
222 views
Traversing an XML file using YUI 2.8 library
I have a requirement to parse/traverse an XML file using the YUI 2.8 library. From the YUI's manual page of DataSource, I could get info about how to get the XML file using XHRDataSource and then set ...
0
votes
2answers
262 views
How to cache YUI DataSource?
I'm setting up a YUI DataTable with filtering by following the steps on the YUI site
However, I am using JSON as the DataSource ResponseType. When I type in a value to filter, the request will be ...
0
votes
3answers
840 views
Get full data set, sorted with YUI Data Table with Pagination
I hope I am describing my issue enough.. here goes:
I have a YUI data table, get a server side set of records via JSON, and then populates the data.
Users can click on the headers to sort the data ...