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
1
vote
2 answers

YUI DataTable sort number with link

I have columns that are basically 399.99 If I set parser:"number" on the column, I get a blank column, but if I don't, the sorting is not a numeric sort. Is there a better parser that can handle links around the…
Paul Tarjan
  • 48,968
  • 59
  • 172
  • 213
1
vote
1 answer

Making a HTML_PARSER to work in widget DataTable

So i'm trying to parse an html table to the YUI 3 DataTable widget, modifiyng the widget HTML_PARSER object. HTML
Tipo Codigo Descripcion Impuesto para la…
ajorquera
  • 1,297
  • 22
  • 29
1
vote
1 answer

YUI3 Datatable - Drag and Drop columns, function getTbodyEl does not exist

I'm wondering how can I make the order of the columns sortable in a YUI 3 Datatable. Following an example where rows are sortable I found that I have to create an instance of Y.DD to each row. Trying to do the same with columns, but the function…
user1791567
  • 1,388
  • 1
  • 16
  • 29
1
vote
2 answers

YUI Datatable Blocks Enter Event of Other Components At A Page

I have a problem with selecting an option from combobox through hitting enter. Two pages are exist, one of these page uses YUI data table, while the other one does not. I have this problem only at the page with YUI datatable. After some digging, I…
ahmetdursun
  • 83
  • 1
  • 6
1
vote
1 answer

YUI3 Datatable - row formatting and selection

I have an example working here - http://jsfiddle.net/BM3kX/5 It has a piece of JSON consumed by a YUI DataTable. I have a few queries regarding the same. The JSON has a 'imageURI' attribute from which I need to render an image [16x16] along with…
the-petrolhead
  • 597
  • 1
  • 5
  • 16
1
vote
1 answer

YUI DataTable Sorting

I'm using a YUI datatable to create some basic client side sorting for some stats, returned via a web service I've created. Didn't quite want to figure out YUI's ajax datasource stuff, so I'm loading the data in via jquery and addRow()'ing the data.…
Josh
  • 12,602
  • 2
  • 41
  • 47
1
vote
1 answer

How to display images in datatable?

How to display an image instead of a bool value in a cell in datatable? The datatable is associated with a datasource.
srv
  • 435
  • 1
  • 5
  • 22
1
vote
1 answer

YUI DataTable nested columns with JSON object with unknown keys

I am pretty new to YUI and need some help. I have a JSON response like this: { "Results":[ { "alpha":57.935, "beta:{ "delta":2.975, "omega":1.431 }, …
Wilderness
  • 1,309
  • 2
  • 15
  • 27
0
votes
2 answers

How to set Date Cell Editor's context position in yui datatable

I want to set the inline date cell editor's position to ["tr", "br"] with reference to a yui datatable cell. How can I do that? this way is not working -- column.editor.cfg.setProperty("context", [target, "tr", "br"])
0
votes
2 answers

yui datatable error

I have a problem with json data insertion in my DataTable. Here an example of json data send by server: {"geneItemList":"{"col":"symbol","qv":"cd4","limit":"-1","start":"0","geneid":"920","name":"CD4" ,"symbol":"CD4","lastupdated":"2009-05-20…
Fabien Barbier
  • 1,514
  • 4
  • 28
  • 41
0
votes
1 answer

how do I link my YUI datatable so it is resized when the YUI layout panel it is in is resized

I'm developing a fairly simple database fed web app, that really just displays the contents of a DB in a grid control. I have a YUI datatable control which displays the data in a grid, and it resides inside a YUI layout control which splits my…
Paolo
0
votes
2 answers

How can I use a custom sortFunction with a Grails gui:datatable tag?

I have a datatable in Grails with several sortable columns. Unfortunately, the sort is case-sensitive by default, such that "Zed" is shown before "alice". So I want to add a custom case-insensitive sort function. I'll start by sorting the…
Sarah Cartwright
  • 136
  • 1
  • 10
0
votes
1 answer

Why the Date is different when accessed througth Domain class and from DB

I have domain class and had a property DOB of type Date and when i access it through domain class object it showing +1 to the actual date in DB. i am displaying all of my data in yui datatable. I dont know the exact reason for it.Please can u give…
srini
  • 6,719
  • 8
  • 32
  • 36
0
votes
1 answer

YUI datatable bad sorting

Again i have this path http://www.tampografica.com/atech/admin/YUIdatatable.html try to order by visits, its ordering by string no number... if you check the Javascript it shows that i put the number formatter any help? Thanks
user3413623
  • 80
  • 1
  • 2
  • 10
0
votes
1 answer

YUI - DataTable - RadioCellEditor issue

I am using YUI Datatable. myDataTable = new YAHOO.widget.DataTable("cellediting", myColumnDefs, myDataSource, { }); Added RadioCellEditor. var radioEditor = new YAHOO.widget.RadioCellEditor({ radioOptions:["1","0"],disableBtns:true…
Rahul
  • 2,511
  • 3
  • 20
  • 20