How to make repeater widget to fill from Left to Right and wrap remaining items in bottom
Hi all,
I'm looking for a way to fill data items from Left to Right in Repeater Widget.
/VR
Hi all,
I'm looking for a way to fill data items from Left to Right in Repeater Widget.
/VR
it seems that we can not achieve this only with property settings but possibly in combination with css style definitions - e.g. in the Applicaiton tab:
.test{
width: 40px;
height: 40px;
background-color: skyblue;
transform: rotate(-90deg) translateX(-400px);
}
And we can set the test to the gridLayout which contain the repeater (will rotate and translate it) . The best value could be found after some tests.
For quick test I did have the following appearance:
Of course, you can use some rotation also in sub elements e.g. repeater cells - for example you can rotate back the text again 90 degree if you want to have a horizontal texts but it will definitely require a number of tests when you want to achieve the desired appearance of your layout.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.