He is getting some script errors such as RadSplitter is undefined and RadSplitter_Pane is undefined.
I know I have personally seen these before but they were always transient and I could usually reload my browser and they would go away.
But his are persistent. Any ideas of what it is about his pc that might need to be tweaked to get it to work?
Thanks.
Cliff
<telerik:RadWindow ID="RadWindow1" runat="server" Title="Test" VisibleOnPageLoad="true" ShowContentDuringLoad="true">
<asp:CheckBoxList ID="CheckBoxListColumns" runat="server" />
</telerik:RadWindow>
Can this be done?
A have a user input form with tool tips for all controls, my preferred ShowEvent mode for the ToolTipManager is "Focus", checkboxes do not seem to like this however.
If I leave the ShowEvent as default or MouseOver, my checkbox ToolTip will display ok but if I change to Focus it doesn't work. I have tried:
After some searching I haven't found any reference to this in the documentation, is there a solution (simple or otherwise) that I am overlooking?
Regards
Conan
protected void RadGrid1_NeedDataSource(object source, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
{
FoodVanWCF wcf = new FoodVanWCF();
DataSet menu = wcf.GetMenu();
RadGrid1.DataSource = menu.Tables["Categories"];
RadGrid1.MasterTableView.DetailTables[0].DataSource = menu.Tables["Items"];
RadGrid1.MasterTableView.DataKeyNames = new string[] { "mastercategoryid" };
RadGrid1.MasterTableView.DetailTables[0].DataKeyNames = new string[]{ "categoryid" };
GridRelationFields grf = new GridRelationFields();
grf.MasterKeyField = "mastercategoryid";
grf.DetailKeyField = "categoryid";
RadGrid1.MasterTableView.DetailTables[0].ParentTableRelation.Add(grf);
}
However when I try to expand the grid I get the error
Parent table relations set, but no correspoding data-key name found
What am I doing wrong here?