Is it possible to freeze headers on columns and rows in saiku? - saiku

Is there a feature to freeze headers on rows or/and columns in saiku? I am about to start working on this through css. Is there anyone else working on this feature?
Cheers,
itso

"Freeze headers on rows or/and columns in saiku"
you talk in fixed the header of table html when the user use the scroll?

Related

Prevent Kendogrid multi-tables (header and data) creation

Im using Kendogrid and it creates two tables, one for the header and other one for the data.
My current problem is that when users scroll left/right the columns does not conserve the alignament; so, Im thinking that one posible solution is to force my Kendogrid don't create two but one table for all (header and values). Is this possible? There is an alternative?
There is no possibility to prevent KendoGrid creation of two but one table for all (header and values); at least of course that you use a template.

If 2 jqgrid tables are present(with frozen functionality) in same page, frozen columns are not working properly

If 2 jqgrid tables are present(with frozen functionality) in same page, frozen columns are not working properly.
Second table works fine. But the first table header is messed up. Seems there is some bug in jqgrid css.
Oleg please help :)
Fixed it by adjusting the some CSS properties.

How to insert title for Rows of Cross Tab in Birt Tool

i am very new to Birt Tool,
my Question is,
I Did Row spaning in Cross tab by using different rows, now i want to insert heading for each row,
Could anyone help me
The reason this never got an answer is that Eclipse has not yet provided this long-awaited and much requested feature: https://bugs.eclipse.org/bugs/show_bug.cgi?id=261995
Several work-arounds though. If you've found something that works well, let us all know.
one workaround which i use is add a grid on top of the rows with same number of columns as in the crosstab and 1 row .
Now you can add labels in the grid for static headers
If you want dynamic headers you can choose the data from the pellete

Accessing the whole table when using the tablesorter and tablesorterPager jQuery plugin

I am using the tablesorter and tablesorterpager plugin and I really like it.
http://tablesorter.com/docs/
http://tablesorter.com/docs/example-pager.html
However I need help with a problem I have. I use checkboxes for every row in a table for selecting items. I also have a “select all” checkbox in the table header.
When looking at the pager script I understand that the plugin completely removes all the table rows from the DOM and only renders the visible rows, the rest of the table is cached.
So when using code similar to this:
$("#theTable").find("input[name='cbitems']:not(:disabled)").each(
I will only get elements currently visible. Not elements in "hidden" pages.
So my question is; is there anyway to make the cached table accessible?
For example:
$("#theTable").cachedTable.find("input[name='cbitems']:not(:disabled)").each(
I have tried reading up on object oriented javascript (or what to call it), but no success.
To answer my own question:
The cached table is accesible, I had just left out the [0] part.
$($("#theTable")[0].config.rowsCopy).each(function() {
$(this).find("input[name='nodeitems']:not(:disabled)").attr('checked', check);
});

Why do jqgrid, flexigrid and ingrid all use separate tables for the header and data?

We're using jqgrid on a web application to render the results of searches because of its built in functionality for paging and sorting that executes server side. We were previously using Tablesorter, but that operated client side and so didn't work well for how we were trying to use it.
We had a web designer on the project (whom has since left the organisation) that had created styles for tables and tried to get the same look working on the jqgrid. It sort of worked, but not quite. We have trouble with the header columns being unaligned with the data columns. We've fiddled with the CSS but it just doesn't seem to work. Sometimes we get scroll bars appearing when we don't want them.
Anyway, part of the problem seems to be that jqgrid uses one table for the column headers, and then another for the data itself. These tables are each wrapped in a div tag. We've had a look at some of the alternatives such as Flexigrid and Ingrid but they also use the same approach with separate tables for the headers and data.
It would be great if someone could explain why this approach is used. We were wondering why a standard table tag with a row of th for the headers and td for the data couldn't be used instead?
The reason these plugins use separate tables for headers and data is to allow for fixed header scrolling. As far as I know you cannot have headers and data in the same table, yet fix the headers to the top during scrolling.
Also for your alignment issue, if possible, I believe these plugins all have settings where you can set how wide you want each column, and this will make the data and header columns line up properly.

Resources