This is a migrated thread and some comments may be shown as answers.

[Solved] How to get clint object for nested splitter

2 Answers 51 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Alan Mosley
Top achievements
Rank 1
Alan Mosley asked on 06 Aug 2011, 11:52 AM
I have a nested splitter, spltter2 is nested inside splitter1, but i can not seem to access it. Each time i try, i get the first pane of the parent splitter.
Is there a trick to this, or should i be able to get the client object like so

 

var splitter2 = $("#Splitter2").data("tSplitter")
splitter2.ajaxRequest(".t-pane:first")


2 Answers, 1 is accepted

Sort by
0
Alex Gyoshev
Telerik team
answered on 08 Aug 2011, 11:29 AM
Hello Alan,

Thank you for reporting this. You can work-around the issue with the following code:

splitter2.ajaxRequest($("#Splitter2 .t-pane:first"));

The issue has been logged for fixing.

Regards,
Alex Gyoshev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

0
Alan Mosley
Top achievements
Rank 1
answered on 08 Aug 2011, 12:54 PM
Thanks, i worked around by giving the pane a id then using

splitter.ajaxRequest("#myid", "/stock/product/cartdata")

 

Tags
General Discussions
Asked by
Alan Mosley
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Alan Mosley
Top achievements
Rank 1
Share this question
or