Hi,
I need a mulitple pane for the splitiview. And I found out that there are 2 problems.
Problem:
How do I remove the spaces between the pane? How to exclude the dots or page indicator?
Note:
I only need the mulitple pane with no space in between and page indicator.
Please check the attached file for the source code.
Thanks,
Mac
I need a mulitple pane for the splitiview. And I found out that there are 2 problems.
Problem:
How do I remove the spaces between the pane? How to exclude the dots or page indicator?
Note:
I only need the mulitple pane with no space in between and page indicator.
Please check the attached file for the source code.
Thanks,
Mac
4 Answers, 1 is accepted
0
Hello,
You can hide the page indicator with CSS only like this:
#appearance .km-pages {
display: none;
}
About the spacing issue - it is controlled by Flexbox CSS styling, can you show a mockup of how do you want it to look and I will tell you if this is possible and how to do it.
All the best,
Kamen Bundev
the Telerik team
You can hide the page indicator with CSS only like this:
#appearance .km-pages {
display: none;
}
About the spacing issue - it is controlled by Flexbox CSS styling, can you show a mockup of how do you want it to look and I will tell you if this is possible and how to do it.
All the best,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Core
Top achievements
Rank 1
answered on 30 Oct 2012, 05:36 PM
Hi Kamen,
Behavior:
The screen has a multiple scrollable row or pane. And it has no spaces in between.
Please check the attached file. And let me know if it's possible and how to do it.
I hope you can help me to do it.
Thanks,
Mac
Behavior:
The screen has a multiple scrollable row or pane. And it has no spaces in between.
Please check the attached file. And let me know if it's possible and how to do it.
I hope you can help me to do it.
Thanks,
Mac
0
Accepted
Hello,
The SplitView is designed to cover the whole screen and not to scroll. To mimic the behavior on the screenshot you posted, you just need to place multiple ScrollViews in a normal View. In this case the Flexbox won't be a problem and there will be no spacing between the ScrollViews.
All the best,
Kamen Bundev
the Telerik team
The SplitView is designed to cover the whole screen and not to scroll. To mimic the behavior on the screenshot you posted, you just need to place multiple ScrollViews in a normal View. In this case the Flexbox won't be a problem and there will be no spacing between the ScrollViews.
All the best,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Core
Top achievements
Rank 1
answered on 31 Oct 2012, 02:31 PM
Kamen, Thanks