I'm trying to create an instance of the client side object for a panelbar and it keeps telling me that the method does not exist. I'm using the following code.
var panelbar = $find("<%=RadPanelBar1.ClientID%>");
var item = panelbar._findItemByText("PATIENT IS GOOD MATCH");
item.set_text("New Text");
<cc1:RadPanelBar ID="RadPanelBar1" runat="server" Skin="WebBlue"
Width="500px" ExpandMode="SingleExpandedItem" style="text-align: left;">
<ExpandAnimation Type="OutQuint" Duration="400" />
<CollapseAnimation Type="OutQuint" Duration="300" />
<Items>
<cc1:RadPanelItem runat="server" Text="PATIENT IS GOOD MATCH" />
.........
thanks for you help,
Ben