I cannot for the life of me figure out how to add a local copy of the help files to my VS environment.
Per the Installation help, "The MSI installer unpacks the controls on your computer in a folder named Telerik in your Program Files. Additionally, the installer package adds the TelerikĀ® UI for ASP.NET AJAX help files to your VS.NET IDE and to your local copy of MSDN (if you have one installed)."
I have run and re-run, repaired and updated from the MSI but no matter what I do, nothing shows up in my help viewer.
I've downloaded the ZIP installer and looked for the help installation in there, but to no avail.
Please help.
Thanks,
-- Matt

I tried this code to filter radgrid from the external radcombox located outside the Grid. And i have a problem with it. Visual Studio debugger and SQL Profiler show that this code works and send to radgrid correct filter expression with the correct filter value. But radgrid doesn't filtrate data with this expression while rebinding. It shows all data without any filtering after rebinding. How can I solve it?
This is my code C#:
protected void RadComboBox1_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e){ radgrid.MasterTableView.FilterExpression = "[service_id] LIKE '%" + ddlService.SelectedValue + "%' "; GridColumn column = radgrid.MasterTableView.GetColumnSafe("serv_id"); column.CurrentFilterFunction = GridKnownFunction.EqualTo; column.CurrentFilterValue = ddlService.SelectedValue; column.AndCurrentFilterFunction = GridKnownFunction.EqualTo; radgrid.MasterTableView.Rebind();}This is my code ASPX:
<telerik:RadComboBox ID="ddlService" runat="server" Height="200" Width="240" DropDownWidth="310" DataSourceID="dsServices" EmptyMessage="- Select Product -"HighlightTemplatedItems="true" CausesValidation="false"Filter="Contains" AppendDataBoundItems="true"onselectedindexchanged="RadComboBox1_SelectedIndexChanged"SelectedValue='<%# radgrid.MasterTableView.GetColumn("serv_id").CurrentFilterValue %>'AllowCustomText="true" AutoPostBack="true" DataTextField="service_name" DataValueField="id">I tried this code to filter radgrid from the external radcombox located outside the Grid. And i have a problem with it. Visual Studio debugger and SQL Profiler show that this code works and send to radgrid correct filter expression with the correct filter value. But radgrid doesn't filtrate data with this expression while rebinding. It shows all data without any filtering after rebinding. How can I solve it?
This is my code C#:
protected void RadComboBox1_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e){ radgrid.MasterTableView.FilterExpression = "[service_id] LIKE '%" + ddlService.SelectedValue + "%' "; GridColumn column = radgrid.MasterTableView.GetColumnSafe("serv_id"); column.CurrentFilterFunction = GridKnownFunction.EqualTo; column.CurrentFilterValue = ddlService.SelectedValue; column.AndCurrentFilterFunction = GridKnownFunction.EqualTo; radgrid.MasterTableView.Rebind();}This is my ASPX code with combox setting:
<telerik:RadComboBox ID="ddlService" runat="server" Height="200" Width="240" DropDownWidth="310" DataSourceID="dsServices" EmptyMessage="- Select Product -"HighlightTemplatedItems="true" CausesValidation="false"Filter="Contains" AppendDataBoundItems="true"onselectedindexchanged="RadComboBox1_SelectedIndexChanged"SelectedValue='<%# radgrid.MasterTableView.GetColumn("serv_id").CurrentFilterValue %>'AllowCustomText="true" AutoPostBack="true" DataTextField="service_name" DataValueField="id">I tried this code to filter radgrid from the external radcombox located outside the Grid. And i have a problem with it. Visual Studio debugger and SQL Profiler show that this code works and send to radgrid correct filter expression with the correct filter value. But radgrid doesn't filtrate data with this expression while rebinding. It shows all data without any filtering after rebinding. How can I solve it?
This is my code C#:
protected void RadComboBox1_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e){ radgrid.MasterTableView.FilterExpression = "[service_id] LIKE '%" + ddlService.SelectedValue + "%' "; GridColumn column = radgrid.MasterTableView.GetColumnSafe("serv_id"); column.CurrentFilterFunction = GridKnownFunction.EqualTo; column.CurrentFilterValue = ddlService.SelectedValue; column.AndCurrentFilterFunction = GridKnownFunction.EqualTo; radgrid.MasterTableView.Rebind();}
This is my ASPX code with combox setting:
<telerik:RadComboBox ID="ddlService" runat="server" Height="200" Width="240" DropDownWidth="310" DataSourceID="dsServices" EmptyMessage="- Select Product -"HighlightTemplatedItems="true" CausesValidation="false"Filter="Contains" AppendDataBoundItems="true"onselectedindexchanged="RadComboBox1_SelectedIndexChanged"SelectedValue='<%# radgrid.MasterTableView.GetColumn("serv_id").CurrentFilterValue %>'AllowCustomText="true" AutoPostBack="true" DataTextField="service_name" DataValueField="id" >I have a subgrid within which there is a button to add a row (record).
When the button to add a row is clicked, then the below function is called:
function vAddRow(e) {
var grid = $(e.parentElement.parentElement).data("kendoGrid")
;
parentId = grid.element[0].id.split("-")[2];
grid.addRow();
console.log("vet add row");
};
When this function is called the console shows the error "TypeError: t is undefined ". From what I can see this error is triggered from the Kendo source within the "addRow" function.
I cannot find anything in the documentation that defines what "T" is within the context of addRow.
I don't know how relevant it is but the parent grid has the same functionality and does not encounter an error.
Any insight would be great!