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

'Telerik.Web.UI.RadSplitBar' does not contain a definition for 'ClientId'

1 Answer 74 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Chad
Top achievements
Rank 1
Chad asked on 20 Jan 2009, 03:36 PM
I have a master page with three panes in it. One pane has a rad splitter bar. Randomly, the page that uses this master page stopped working, now I get the above error.
The radsplit bar code is:
 <telerik:RadSplitBar ID="radSplitBar1" runat="server" EnableResize="true" CollapseMode="Both" BorderStyle="None" Visible="true" />

Any idea why this would happen?

This error happens in System.Web PostProcessFoundBuildResult and the error code is CS0117.

Any hep would be appreciated.



1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 21 Jan 2009, 04:15 PM
Hello Chad,

Since I do not have your project and I am unable to examine and debug it I cannot tell what is teh exact reason for the problem. However, I assume that the problem comes from the fact that you have referenced the splitbar in code block by typing ClientId instead of ClientID - please note that the case matters and you should use the correct case when getting the ClientID property value. This being said, make sure that in all the code you have used teh correct spelling e.g  as shown below:

var splitBar = $find("<%= RadSplitBar1.ClientID %>");


All the best,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Splitter
Asked by
Chad
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or