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
3
votes
0 answers
Datatables integration with ace admin theme
I have integrated vertical scrollable datatables(server side using sAjaxSource) with the Ace Admin theme for reponsiveness (bootstrap,ace.min.css/js) files etc.
The moment I integrated it with Ace theme for responsiveness it displays 2 theads. The…

genesis
- 37
- 9
2
votes
3 answers
YUI DataTable - Howto have just one paginator?
I'm using the YUI DataTable in a Grails 1.1 project using the Grails UI plugin 1.0.2 (YUI being 2.6.1).
By default, the DataTable displays 2 paginators: one above and another one below the table. Looking up the YUI API documentation, I could see…

Rollo Tomazzi
- 3,120
- 3
- 28
- 21
2
votes
2 answers
How do I cancel event bubbling in a YUI DataTable?
I am trying to create a YUI 2.8.1 DataTable with a checkbox column. When the user selects the row it should highlight, but not when the user checks the checkbox.
I'm trying to suppress the rowClickEvent by setting cancelBubble = true in the…

Mashmagar
- 2,556
- 2
- 29
- 38
2
votes
1 answer
YUI datatable not styling
i am using YUI2 to add the plugins to my table.
this is an example:
http://www.tampografica.com/atech/admin/YUIdatatable.html
it is not loading the CSS styling anybody knows why?

user3413623
- 80
- 1
- 2
- 10
2
votes
1 answer
how to disable click to sort on yui datatable?
I would like to move "click heading to sort" to "double click heading to sort". So currently i'm doing it with the following two lines:
table.unsubscribe("theadCellClickEvent",…

FurtiveFelon
- 14,714
- 27
- 76
- 97
2
votes
1 answer
How to parse NULL value returned using YUI datasource
I am using YUI datatable and datasource to render data in one of my projects. The data returned happens to be NULL and YUI datasource is unable to parse it.
Below is the declaration code of datasource and datatable. For readability sake, I am…

MM.
- 2,535
- 2
- 17
- 13
2
votes
2 answers
YUI Datatable - "Data Error."
I'm trying to make a datatable using YUI with JSON returned data.
Included is the json returned data, and the page data displayed.
JSON Data:
[{"supplier_id":"127","name":"Adams…

Chris
- 1,101
- 3
- 17
- 33
2
votes
3 answers
How do I ignore a keyEvent in Javascript?
I have a DataTable in YUI. I'm trying to get the table to ignore all keyEvents. I've tried these methods:
YAHOO.util.Event.addListener(singleSelectDataTable, "keydown", function(oEvent) {
YAHOO.util.Event.stopPropagation(oEvent);…

Son of the Wai-Pan
- 12,371
- 16
- 46
- 55
2
votes
2 answers
Avoid page flickering when updating a YUI DataTable
I am using jlinq a library for extending linq to json and hence i filter my json data. Consider i have a json data that draws a yui datatable on page load with 100 rows. I am doing a clientside filter which will reduce my json data and i am now…

ACP
- 34,682
- 100
- 231
- 371
2
votes
3 answers
Optimizing deletion of multiple rows in a YUI datatable
Deletion operations seems to be the slowest in a YUI datatable. I have a datatable with > 300 rows. I need to delete selected rows. I tried removing the selected records from the recordset and then calling table.render() .. While this is okay, can…
Zenil
2
votes
1 answer
How to make YUI DataTable to be 100% width
My code for creating the data table looks like this:
myDataTable = new YAHOO.widget.ScrollingDataTable(
"containerDiv",
myColumnDefs,
myDataSource,
…

7wp
- 12,505
- 20
- 77
- 103
2
votes
3 answers
cell merge in datatable at primefaces
I am new to primefaces. I have one datatable in my application. In that for 3 columns i need to merge some rows. That row count will be generated dynamically based on the data. If I tried to use rowspan in that particular column tag, it additionally…

Akshaya Selvakumar
- 21
- 2
- 5
2
votes
2 answers
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 cell whose value changed.
Here are some relevant…

Rob Hruska
- 118,520
- 32
- 167
- 192
2
votes
2 answers
YUI Column Selection
I'm having issues using YUI's DataTable Column Selection Functionality. I've tried,
myEndColDataTable.subscribe("theadCellClickEvent", myEndColDataTable.onEventSelectColumn);
and
myEndColDataTable.subscribe("cellClickEvent", function (oArgs) {
…

ctrygstad
- 131
- 1
- 3
- 11
2
votes
1 answer
YUI DataTable - how to avoid 'Stop running this script?' confirm message
I am using YUI DataTable in my web application. While my DataTable is fetching the data if I close that and move on to other DataTable I keep getting the message 'Stop running this Script?' confirm message. I want to avoid this message and I want to…

Naga
- 317
- 2
- 3
- 10