Lock a column while scrolling with QTableWidget / QTableView? - qtableview

Is it possible to hold the position of one column , while i'm scrolling horizontally in QTableWidget / QTableView ?
Thanks !

Take a look at following example:
http://doc.qt.io/qt-5/qtwidgets-itemviews-frozencolumn-example.html

Related

The table present different when the device's width is too small

I create a table in jquery-mobile and the table present different from what I want it to be when the device's/screen's width is too small.
This is what I expect (when I open in web preview)
This is what it be in mobile simulator
I want each row represent in the same line
[Position] [Level] [DeleteBtn]
Not the seperate line
[Position]
[Level]
[DeleteBtn]
Thank you for suggestions or solutions.
Ps. I also want the Damaged Position(s): label to align the same horizontal position of the plus button. If you know the solution, it will be welcome. ;)
I think it's the "reflow" data-mode.
Check it out here.
If you want to keep it, you should make sure there is enough space for all columns (otherwise, it will break into a stacked presentation)
A similar question that might help: here.
Also, according to jquery, reflow is the default, so removing it shouldn't help

Three divs, content from one div goes to another

I need to create three divs, next to each other (attribute float:left).
Then I read the data from database and I need to present this data in three divs, in such a way that I first fill up the first div, line by line and when I reach certain height, I go to the next div and fill it with data, and so on.
This is something like reverse table, that is I first fill the first column in first row then go to second and so on until the end of the row, then I move to the second column of first row
and so on. I hope you get the picture.
Is there a way to achieve this in CSS or in some other way?
This functionality is available in CSS3 using column-count and column-span.
I do not know how to make it efficient, but it should be possible with javascript... you know the line-height, you check the height of first div with all content, then you truncate it to desired size and the rest put to the next div.. repeat.. but this looks odd.. ?
You might be able to do this by requesting the first 30 results in the database in one column, then request the next 30 in the next div, and so on. I can't see it being possible in CSS 2.1 alone.

Fluid arrangment of dynamic tables

I had a question with regards to fluid arrangement of tables. I have attached a screen-shot below to try and explain what I am trying to achieve.
Basically, I have a number of dynamically created tables. Their widths are fixed but their heights can vary. What I am trying to achieve is, the maximum utilization of space when the browser window is re-sized (in terms of organization of the tables).
I have tried the following:
1. Arrange the tables in descending order of the number of rows they have.
2. Using a style of 'float: left;' on the table (or a div surrounding the table).
However, as you can see below, there is a gap below on the first column that could have been utilized by table 4 (the last one below), but it hasn't because table 3 (column 2, row 2) is taking up some space which prevents table 4 from being placed above.
I hope I've described it in a manner that could be understood, if not please let me know how I could clarify any points so that you could help me out.
Basically trying to get a fluid design with the maximum space utilization. Any ideas on how I could achieve this?
Thanks in advance.
Example http://img717.imageshack.us/img717/5492/exampleqm.jpg
Can't be done without javascript (or a whole lot of assumptions and restrictions).
Try the Columnizer jQuery Plugin.
Try the jQuery Masonry plug-in.

Column header direction is SSRS Matrix

Hi is it possible to change the direction of column header values ?
By default header valules displayed in horizontal direction only. But I want to show the values in vertical direction. Is it possible?
I tried from the last 3 days. But no where I got any good results.
Thanks in advance
Which version of SSRS are you using? As far as I know, you can only change the orientation of the text in chart axes (at least in 2005).

Is it possible to center list on page programically on Reporting services?

I'm interested to center (dynamically) the list/table on page.
Eg I have table with unknown records count (only in runtime will know that)
So how to center it on the page?
I have not tried this myself, but have you thought about setting the top position or margin based on an expresssion? Something like the following pseudo code
( < pageHeight> - (<numRows> * <rowhieght>) ) / 2