Hi Isomorphic,
I'm using latest 5.1p (v10.1p_2016-09-14) and custom component hovers like in this sample.
It seems that interaction with the hovers is not possible (e.g. having a ListGrid as hover component and resorting or filtering it), as the hover disappears, once you move the mouse from the hovered cell to the hover.
This is fine for me, as I'm going to display-only related information to the hovered cell/record.
But as the data I'm going to display is 1:n, I don't know beforehand how many rows the ListGrid will contain.
If I make the hover not tall enough, I'll have scrollbars I can't use - I don't want that.
If I make the hover too high (educated guess about max rows), I'll have white space in the most cases - I don't want that, either.
Is there a simple way to solve this?
which should work according to the Overflow.VISIBLE docs does not work (no resize, still scrollbars).
I'll try manual height calculation in a DataArrived-handler next, but this does not feel correct.
Best regards
Blama
I'm using latest 5.1p (v10.1p_2016-09-14) and custom component hovers like in this sample.
It seems that interaction with the hovers is not possible (e.g. having a ListGrid as hover component and resorting or filtering it), as the hover disappears, once you move the mouse from the hovered cell to the hover.
This is fine for me, as I'm going to display-only related information to the hovered cell/record.
But as the data I'm going to display is 1:n, I don't know beforehand how many rows the ListGrid will contain.
If I make the hover not tall enough, I'll have scrollbars I can't use - I don't want that.
If I make the hover too high (educated guess about max rows), I'll have white space in the most cases - I don't want that, either.
Is there a simple way to solve this?
Code:
lg.setHeight(50); lg.setWidth(50); lg.setOverflow(Overflow.VISIBLE);
Originally posted by Overflow.VISIBLE docs
Best regards
Blama
Comment