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

CssClass ClientSide

2 Answers 48 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Doug Beard
Top achievements
Rank 1
Doug Beard asked on 06 Oct 2009, 08:47 PM
I need to query via javascript, what the CssClass is set to on a RadPane.  But, I can't find any exposed property to do so.  Is there a way to do this?  For now I'm using a value from a hidden input, but I'd rather be able to query the pane directly.

2 Answers, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 09 Oct 2009, 08:25 AM
Hello Doug Beard,
Yes, you are correct. The RadPane does not have a client property that sets/gets the CssClass applied to the pane. However, this CSS class is applied to the DIV element holding the content of the RadPane and you can get it the following way:
<script type="text/javascript">
function OnClientLoad(sender, args)
{
    var pane = $find("<%= RadPane1.ClientID %>");
    var paneElement = pane.getContentElement();
    alert(paneElement.className);
}
</script>
<telerik:RadSplitter ID="RadSplitter1" runat="server" OnClientLoad="OnClientLoad">
    <telerik:RadPane ID="RadPane1" runat="server" CssClass="Test">
    </telerik:RadPane>
    <telerik:RadPane ID="RadPane2" runat="server">
    </telerik:RadPane>
</telerik:RadSplitter>

Regards,
Tsvetie
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Doug Beard
Top achievements
Rank 1
answered on 12 Oct 2009, 12:45 PM
Works perfectly, thanks.
Tags
Splitter
Asked by
Doug Beard
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Doug Beard
Top achievements
Rank 1
Share this question
or