Questions tagged [kendo-splitter]
18 questions
4
votes
2 answers
Kendo splitter: resizing collapsible icon
The Kendo Splitter has a collapsible property that I want to use. However, the icon is a very small arrow that isn't intuitive at all, the users can barely see it. Even when they know it's there, the icon is so small that clicking it takes some time…

chiapa
- 4,362
- 11
- 66
- 106
1
vote
1 answer
kendo ui splitter switch orientation
Just wanted to share a solution to a short problem I encountered to one of my recent projects here.
The situation is the next:
In a kendo UI based web project you want to use the splitter functionality with the next basic configuration:
HTML

Cédric Berlez
- 161
- 1
- 8
1
vote
1 answer
Kendo Splitter: How to change "collapsible: false" property of splitter to "collapsible: true" on click of button
Can we force the Kendo to change the "collapsible: false" property of splitter to "collapsible: true" on click of a button??
On load, if the Splitter property "collapsible" is set to "false", then the user cannot collapse it back..
So is there…

UID
- 4,434
- 11
- 45
- 75
0
votes
1 answer
Cannot read properties of null (reading '0') Kendo UI Splitter
I am running into an error with Kendo UI Splitter, Cannot read properties of null (reading '0'), I have no idea why this is happening and can only provide a bit of code for it. Here is the code
switch (collapseType) {
case "top": {
…

Chris
- 2,953
- 10
- 48
- 118
0
votes
0 answers
kendo ui splitter resize method brokens the kendo ui scheduler layout - jquery
I've a kendo ui splitter(jquery) with a scheduler in the upper panel and a grid in lower panel (code below)
When i inizialize the splitter it isn't correctly positioned (look at picture one)
Then, i tried to fix the layout ot resize the splitter…

pinale
- 2,060
- 6
- 38
- 72
0
votes
0 answers
Dynamically Resolved Component showing Wrong value in prod
I am using a splitter(kendo splitter) to render two child component into a parent component at once.

Wasif Mustahid
- 144
- 9
0
votes
1 answer
How to setup screen splitup using kendo framework?
I am a newbie in JS development.I have a class defined in html file.
I want to use kendo splitter to…
Pane A
Pane B

Beginner
- 33
- 3
0
votes
1 answer
TypeError: Cannot set property 'forceExpand' of undefined from kendo library component
I am facing this error and I can't find what's wrong.
screenshot of the error
The error specifies that the issue is coming from the SplitterBarComponent.html, but I can't figure out how to solve it since the module associated to the kendo library…

chadax
- 1
0
votes
0 answers
How to use a busy indicator when resizing kendo splitter?
Where would I place a Kendo UI busy indicator in here? I did have it placed in the resize event, but it wouldn't fire
Here is the indicator
kendo.ui.progress($("#container"), true);
kendo.ui.progress($("#container"), false);
let ds = [{
id:…

Chris
- 2,953
- 10
- 48
- 118
0
votes
1 answer
CSS to tell this kendo splitter to use 100% of browser window height?
What CSS is required to make this splitter use 100% of vertical space, so that it extends from the top of the browser window to the bottom of the browser window?
http://dojo.telerik.com/aHIzozUw/3

Tim
- 8,669
- 31
- 105
- 183
0
votes
1 answer
MVC5 Views and Kendo Splitter - Content in 2 overwrites 1
TLDR; Why is pane 2 contentUrl data overwriting pane1 contentUrl data. Details below.
Ok we're getting education by fire here and trying to learn more web based development while too quickly developing an application. Using MVC 5 and Telerik (Kendo)…

Andrew
- 123
- 1
- 9
0
votes
0 answers
KendoUI - Creating/destroying splitter programmatically
In my project I need to create and remove splitters on the fly. We're using KendoUI.
Creating splitters programmatically is fine. It's removing the splitters I am concerned about. I looked at the API for the splitter control and it has a destroy…

Gaurav Mantri
- 128,066
- 12
- 206
- 241
0
votes
2 answers
Manage resizing kendo splitter within another kendo splitter
I have two Kendo splitters on a page. One Kendo splitter is inside of the another Kendo splitter.
My question is how to stop resizing child Kendo splitter, when parent Kendo splitter is resized. Its kind of unusual behavior, but I will need to make…

Maharshi
- 1,178
- 1
- 14
- 37
0
votes
1 answer
Toggle Kendo Splitter on button click inside iframe
my Kendo Splitter is as below.
@(Html.Kendo().Splitter()
.HtmlAttributes(new { style = "height:590px;", id = "mainSplitter" })
.Orientation(SplitterOrientation.Horizontal)
.Panes(horizontalPanes =>
{
…

San
- 63
- 7
0
votes
1 answer
Angular Kendo Splitter only binding data on the first pane
I've been having trouble figuring out why Angular is not binding data anywhere after the first pane of my Kendo-UI splitter.
Here is the relevant HTML, with extraneous uses of {{formData.hello}} to illustrate when the problem occurs:

Lucy
- 3
- 2