The YUI DataTable control provides a simple yet powerful API to display screen-reader accessible tabular data on a web page. Notable features include sortable columns, pagination, scrolling, row selection, resizeable columns, and inline cell editing.
Questions tagged [yui-datatable]
120 questions
0
votes
1 answer
YUI Data Table Issues / Questions
I am using the data table with my ASP.NET MVC 3 web application and so far it is going quite well. I connect to a SQL Server 2008 database, and I return data by using a stored procedure. I am using IE 8 and the latest version of Firefox. The…

Brendan Vogt
- 25,678
- 37
- 146
- 234
0
votes
1 answer
Passing a JavaScript variable to a helper method
I am using ASP.NET MVC 3 and the YUI library.
I created my own helper method to redirect to an edit view by passing in the item's ID from the Model as such:
window.location = '@Url.RouteUrl(Url.NewsEdit(@Model.NewsId))';
Now I am busy populating my…

Brendan Vogt
- 25,678
- 37
- 146
- 234
0
votes
1 answer
How to modify DataTable table after it's constructed
I would like to modify a YUI DataTable as ajax queries get completed. So for example, i have 4 ajax queries querying for things which takes anywhere from 1s to 10s to complete. I would like to start constructing the table when the 1s query finish,…

FurtiveFelon
- 14,714
- 27
- 76
- 97
0
votes
1 answer
How to filter out a column entry in YUI Datatable that ends with a given string
Currently, I am working on a YUI datatable with hundreds of entries. The table consists of four columns, the first one (ID) being the primary key. What we want to do is to ignore any entries whose ID "ends with" a specific number. The source code is…

user246392
- 2,661
- 11
- 54
- 96
0
votes
1 answer
Method not being triggered from razor view
I am using ASP.NET MVC 3 with the razor view engine.
I have the following method in my NewsController:
public JsonResult GetAllNews()
{
var items = newsService.FindAll();
var jsonResult = Json(items);
return jsonResult;
}
In my view I…

Brendan Vogt
- 25,678
- 37
- 146
- 234
0
votes
2 answers
YUI Datatable - call arbitrary function *once* on sort
We're using a lot of YUI data tables to display data, and rather than using the built-in pagination we've done our own so we can paginate on the server side using AJAX without downloading the whole data set (which is often huge).
Whenever we use the…

p.g.l.hall
- 1,961
- 2
- 15
- 26
0
votes
1 answer
GRAILSUI Datatable - saving and restoring state between invocations
I have a datatable thru which a user can page and select a record for display ..
The record replaces the the entire datatable with another one via an Ajax call
.. On the second
datatable is a button to allow you to return to the first .. Currently…

Robert Morning
- 11
- 1
0
votes
1 answer
YUI Datatable failing in IE for large datasets
I have a DataTable and DataSource (YUI 2.6). The XHRDataSource connects to an XML producing address which is a servlet, where I write the XML out onto the response via the PrintWriter.
Servlet:
String data =…

Mikeb
- 6,271
- 3
- 27
- 41
0
votes
0 answers
Django for Data Tables to group by when coloumn hidden
Question:
I have a Data table displaying on django , but now I like to group by when ever I will hide the coloumn
column1 column2 column3
AAA CAD 25
AAA USD 12
BBB CAD 13
BBB USD 16
CCC CAD 11
CCC USD …

sid
- 31
- 5
0
votes
1 answer
Issue with Resizeable Columns in YUI2 DataTable Nested in YUI3 Tabview
I'm having an issue with resizing columns in a YUI2 DataTable when the table is nested inside a YUI3 Tabview.
My situation:
YUI3 Tabview has 4 tabs.
Each tab contains a DataTable that has sortable and resizable columns.
The columns in the DataTable…

Bart Gottschalk
- 174
- 2
- 11
0
votes
1 answer
Sorting datatable column by day name
I have a datatable with day name column. I want to sort this column by day name e.g. if I have [Friday, Monday,Sunday] sorting should return [Monday ,Friday, Sunday] (ascending) and [Sunday,Friday, Monday] (descending).
I tried to use custom sorting…

aa th
- 161
- 1
- 1
- 7
0
votes
3 answers
YUI datatable and date displaying with Firefox
I am using a datatable loaded via JSON with date like this : 2010-06-03
With Opera and Chrome I have the correct date displayed as 06/03/2010. With Firefox Windows (even in safe mode, without any plug-in), I get a NaN/NaN/NaN. If I use the debug…

Cédric Girard
- 3,358
- 7
- 37
- 52
0
votes
2 answers
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 sent to the server again. I find this to be…

Matt McCormick
- 13,041
- 22
- 75
- 83
0
votes
0 answers
Exact Search in Datatable
I want to see my exact keyword search in data table. I have a gender column wheres values are male,female and others when I am searching male then show male and female both but I want to see male only.
Here is my code
$(document).ready(function()…

Rakib Roni
- 252
- 3
- 12
0
votes
1 answer
YUI 2.8.2 datatable sorts old value after a client side button click action is done
I am using YUI datatable 2.8.2. I need to click the delete button and an ajax request goes, after success response, the clicked delete button should be replaced into
"Deleted" text.But when I sort any column the "Deleted" text disappears,…

PHPDev
- 139
- 1
- 3
- 12