Is it possible to do this in xpages? Flow view data from one column to another on a page?
Have a view column that displays in column 1 on the page.
However, because there’s a lot more data to be displayed (and tons of wasted space to the right of the 1st column), have more of the view content flow up to the top of the page, and fill up column 2.
And then, have it do the same with column 3.
So you one have view, but showing continuously in 3 columns?
So, this will depend on whether there is data in column 2 or not?
I doubt you can do this in a view, as they’re effectively just rigid tables
You could build this yourself using a repeat, then in the table you manually create check for values and use colspan, then also use the rendered property of the second (and third) column on that row to hide it if necessary. You’d need to use the xp:td tags to be able to use the rendered property