Questions tagged [yui-datatable]

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.

Docs

120 questions
0
votes
1 answer

Performance hit if I use many YUI DataTable controls in a page

I am planning to use YUI DataTables (for look-up) extensively in my web application. I may give option to open approximately 15 DataTables in a page. I am taking care of caching the content. I would like to know if there would any performance hit on…
Naga
  • 317
  • 2
  • 3
  • 10
0
votes
1 answer

YUI3 Scroll-Datatables in TabView don't render

I have some tabs in YUI3 Tabview. Each tab contains a couple of YUI3 Scrollable Datatables. The datatables are created but are not rendered. All I can see is a part of 1st column of each datatable. Howeveer, if I resize the browser window, I can see…
the-petrolhead
  • 597
  • 1
  • 5
  • 16
0
votes
2 answers

Sorting YUI Datatable, keep null values on Top

I am sorting a YUI Datatable, with a column as Date, there are some NULL values for the column. I need to have those null values remain on top rows of the table, irrespective of the sort order.
Chittprakash
  • 67
  • 11
0
votes
2 answers

Is there a way to set the CSS information for a particular instance of YUI DataTable?

The place were I wnat to use the YUI DataTable is in a wiki that allows HTML and javascript. I have created the custom table, put it in a div and gave it an ID and it works really well except that it usees the CSS from the container wiki page and…
stephenmm
  • 2,640
  • 3
  • 30
  • 48
0
votes
1 answer

How to restrict displaying paginator only in Header or Footer in YUI?

How to restrict displaying paginator only in Header or Footer in YUI with out using any extra div tag? By default it is being displayed both at the top and bottom of the table.
srv
  • 435
  • 1
  • 5
  • 22
0
votes
2 answers

YUI DataTable using KnockoutJS bindings

I have an example working at JSFiddle. It has a piece of JSON consumed by a YUI DataTable which I need to create using KnockoutJS bindings. I'm fairly new to KnockoutJS and would like to know how this can be done. The table should be created under…
the-petrolhead
  • 597
  • 1
  • 5
  • 16
0
votes
1 answer

YUI3 datatable not rendering data when using Plugin.DataTableDataSource with JSON

I've been trying, unsuccessfully, to get a yui3 datatable to correctly populate via a json call. I am flummoxed and hope someone can show me the error of my ways. No matter what I have tried I just get "No data to display". When I run wireshark…
jspyeatt
  • 519
  • 2
  • 6
  • 18
0
votes
1 answer

How to create KnockoutJS template for a YUI DataTable that uses JSON data?

I want to templatize the creation of a YUI3 datatable using KnockoutJS data bindings. Let's say I have following JSON string - { "@lang": "en-US", "cartItem": { "@lang": "en-US", "cartId": "14", "items": [ { …
the-petrolhead
  • 597
  • 1
  • 5
  • 16
0
votes
2 answers

how to refresh yui3 datatable with updated json data

I want to refresh datatable using new data in json format. I tried using below method but it is giving error mentioned var myData = table.get('data'); myData.add(json_data); Error in console log: invalid 'in' operand config userTargets = (config…
0
votes
2 answers

YUI dataTable row expandable/collapsible

Does someone have already made a script as following examples with YUI dataTable ? Example : http://extjs.com/deploy/dev/examples/tree/column-tree.html http://extjs.com/deploy/dev/examples/grid/grid-plugins.html I am looking for an example which…
Fabien Barbier
  • 1,514
  • 4
  • 28
  • 41
0
votes
2 answers

How to render a YUI datatable?

Following the documentation of the YUI DataTable control i've inferred the following code:
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
0
votes
1 answer

YUI3 DataSourceXMLSchema don't get HTML tags

I'm starting try to upgrade a webapp from YUI2 to YUI3 and get a litle issue when trying to upgrade the datatables, the table data are stored local in HTML table format, looking for tutorials and examples I can upgrade it easy and displayed well but…
Barceyken
  • 95
  • 4
0
votes
1 answer

Returning parameters of YUI DataTable from function

This is in reference to this question. I have to use the script mentioned in the approved answer at various pages. So, I have kept the part till the line this.ds.dataProvider = this; in an external JS file. Now, since I am to reuse the prototyping,…
Vrushank
  • 2,763
  • 3
  • 27
  • 41
0
votes
2 answers

Yui Datatable with AutoComplete and Pagination

I try to understand how use server-side Pagination for Dynamic Data (I see example : http://developer.yahoo.com/yui/examples/datatable/dt_dynamicdata.html). My problem is I can not customize my request, when I try the pagination, my request is…
Fabien Barbier
  • 1,514
  • 4
  • 28
  • 41
-1
votes
1 answer

JS: How to dynamically load data into a datatable?

I need a datatable with column sorting using the YUI library. So I am trying to adapt this example: YUI().use("datatable-sort", function(Y) { var cols = [ {key:"Company", label:"Click to Sort Column A", sortable:true}, …
Solace
  • 8,612
  • 22
  • 95
  • 183
1 2 3 4 5 6 7
8