Questions tagged [hxdatatableex]

6 questions
3
votes
3 answers

Grouping columns under a single header in JSF

Is there a way using JSF to group two or more columns under a single parent column in JSF? I have a dataTableEx with hx:columnEx columns inside of it. What I want is something like this: [MAIN HEADER FOR COL1+2 ][Header for Col 3+4] [ COL1…
Jaime Garcia
  • 6,744
  • 7
  • 49
  • 61
1
vote
0 answers

Loading rows into jsf datatable only on user request

Problem statement: I have used hx:dataTableEx to display database table records. I'm binding Service data object(relational record list) to hx:dataTableEx. Loading time is more due to number of records(fetch result gives more than 10000 records). I…
nagesh
  • 307
  • 2
  • 10
  • 22
0
votes
0 answers

Row Highlighting in hx:dataTableEx

How can we apply different row colour based on an attribute in hx:dataTableEx. say for error data that row will be in red. tried this one but not worked here
barun
  • 393
  • 1
  • 5
  • 19
0
votes
0 answers

Horizontal Scroll Bar for JSF hx:dataTableEx component

In my JSF application I need to have hx:datatableEx table component with horizontal scroll bar. Why it's required: Row text must not wrap into next line.(Must be displayed in single line). If text in the row grows more than table column size or…
nagesh
  • 307
  • 2
  • 10
  • 22
0
votes
1 answer

How to get jsf datatable row index on mouse click without using checkbox or radio button

I have used JSF hx:datatableEx datatable component to display document list. Values for the table fetched from the database. Now I want to add an event such that when user does "right click with mouse" on any row I have to display context menu for…
nagesh
  • 307
  • 2
  • 10
  • 22
0
votes
1 answer

how to add a pager to dynamic datatable in jsf 1.1

i've been trying to add a pager to a dynamic datatable. I am using the BalusC code at :http://balusc.blogspot.com/2006/06/using-datatables.html Dynamic columns are working great, but now i need to programatically add a simple pager to allow the…