Unplanned
Last Updated: 22 Feb 2022 06:57 by ADMIN
Created by: Nohinn
Comments: 16
Category: Splitter
Type: Feature Request
35
Some kind of animation for the splitters when you collapse/expand them?
Even nowadays there are people not used to the web environment, and if the collapsible pane just hides instantly (or almost) they will first think 'Where did my *whatever* went!?' so having some kind of easing they would see where did it go.
Unplanned
Last Updated: 10 Mar 2020 16:46 by ADMIN
Adding animation on splitter would be better, currently there is no animation on splitter. animation like slide,fade in, fadeout would be fine.
Unplanned
Last Updated: 10 Mar 2020 16:26 by ADMIN
Created by: Imported User
Comments: 0
Category: Splitter
Type: Feature Request
10
Allow sliding panels much like you do for the AJAX splitter control.  This feature would be very nice if it was working with tablets.
Unplanned
Last Updated: 22 Jan 2025 14:24 by Mikkel
Created by: Mikkel
Comments: 0
Category: Splitter
Type: Bug Report
2

Bug report

If you have a collapsible Kendo UI Splitter with 2 Panes and horizontal orientation, and one of them has size, the other pane will not be collapsible.

Reproducible

  1. Go to this Progress Kendo UI Dojo
  2. Collapse Pane B

Current Behavior

First pane remains at a fixed width.

Expected/desired behavior

The Pane should completely collapse similar to the 2024.3.1015 version(Dojo).

Environment

Unplanned
Last Updated: 29 May 2019 10:54 by ADMIN

See Kendo UI v2019.1.220 Distributed Source Code module kendo.splitter.js _resize() method (Lines 285-240) 

 

1) The splitter _resize method iuses jQuery width() and height() methods to set pane sizes.

2) These methods get/set the clientHeight and clientWidth of the pane element rather than the offsetWidth and offsetHeight. 

3) If any pane has a border or padding, the last pane will extend beyond the limits of the splitter element.

4) Recommend using offsetWidth and offsetHeight to get/set all pane sizes. 

Unplanned
Last Updated: 20 Apr 2023 20:09 by Paweł Korczak
Created by: Paweł Korczak
Comments: 0
Category: Splitter
Type: Feature Request
1

Hi Team,

I would like to request a way for the Kendo UI Splitter to be resize automatically if it is within a hidden container instead of having to call resize.

Thank you!

Unplanned
Last Updated: 03 Oct 2024 12:56 by Suresh
Created by: Suresh
Comments: 0
Category: Splitter
Type: Feature Request
1

Expose the ability to set the content of a pane in a stable state. And not shrink or expand when the splitter is adjusted. The content should overlay each other as demonstrated in the video.

 

 

Unplanned
Last Updated: 08 Jan 2025 16:21 by Paweł Korczak

Bug report

When the min option is set to the Splitter pane and then the Splitter is resized through the size method, the min is not taken into account.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/gHikYadP/2
  2. Click the button

Current behavior

The second pane has a width of less than 150px, although the configured min is '150px'.

Expected/desired behavior

The configured width should be taken into account.

Environment

  • Kendo UI version: 2024.4.1112
  • Browser: [all ]
Unplanned
Last Updated: 10 Jan 2025 08:08 by Paweł Korczak
Created by: Paweł Korczak
Comments: 0
Category: Splitter
Type: Feature Request
1
Currently it is hard to check if a specific pane in the Splitter is collapsed or not. We would like to have a method (e.g. isCollapsed) that will return true if a pane is collapsed, or false it is expanded
Unplanned
Last Updated: 17 May 2021 14:12 by ADMIN

Currently, when the size method is used, the pane parameter could be set using string or jQuery element. I would like to have the support of setting the pane using integers. For example, setting the size of the first pane could be as follows:

var size = splitter.size(1, "40%");