I'm using Telerik controls (version 2013.2.717.40) alongside a jQuery plugin called handsontable within a DNN7 application. My page with the Telerik controls and plugin all work fine in in IE9+, Chrome and Firefox however there's an issue with IE8. In summary, even if I include just a reference to the handsontable javascript files in the head of my page using regular script tags (without actually including any code to render the table) and there's a postback then the page stops responding. I've attached a screenshot of where in the javascript is falling over (please see line highlighted in yellow). It seems to be falling over when it encounters something relating to opacity / filter. I appreciate that this is not entirely a Telerik related issue (as the page works in IE8 if I exclude the plugin - which isn't an option) but I'm wondering whether someone might know what might be causing it.
Hi All ,
I have a radgrid which have child grid in which I have Footer template when I am exporting it by using "OnExcelMLExportRowCreated" event I am unable to get these items from footer template . and also unable to get the items of groupFooter template
on code behind I am accessing it as
foreach (GridGroupFooterItem item in RadGrid.MasterTableView.GetItems(GridItemType.GroupFooter))
{
//set the colspan, so that the template cells are aligned with the grid columns
for (int i = 0; i <= item.Cells.Count - 1; i++)
{
(item.Cells[i] as TableCell).ColumnSpan = 1;
}
//color the footer labels based on the group index
//SetFooterLabelsColor(item);
}
foreach (GridGroupFooterItem item in OrderLineItemsRadGrid.MasterTableView.GetItems(GridItemType.GroupFooter))
{
//set the colspan, so that the template cells are aligned with the grid columns
for (int i = 0; i <= item.Cells.Count - 1; i++)
{
(item.Cells[i] as TableCell).ColumnSpan = 1;
}
is there any event that is fired if value of combobox with checkboxes was changed? ( I need it to load items to dependent comboboxes) And I cannot use ItemChecked event, I need event that is fired after user closes dropdown, not event that is fired after each item is checked. TextChanged event is also useless in this situation because it works only if I select 1 item in combobox. SelectIndexChanged also doesn't work for more than one item.
So is there any way how to do that or do I have to use client-side events?
How set Regular Expression Validator to a GridHTMLEditorColumn using Sub RadGrid1_ItemCreated?
And tips how i get MaxLength to work in GridHTMLEditorColumn?
Hi
I am using RadWindow which contains RadAsyUpload in asp.net update panel , image control and button when i select image in RadasyUpload image get uploaded and preview is displaying in image control, but problem is that when image uploaded RadWindow get close and to view image i have to open Radwindow again , how could i keep open RadWindow after displaying image and close it when i click on close button
I used image button in TemplateColumn I want to get DataKeyNames(id) value of row when Image button clicked to view PDF file that stored in server and has the same name as id of row in new tab, how can I do this
Thanks
how can i decrease space between groups of TileList. i am using rtlistGroupSeparator as describe in telerik documentation custom css. but not working for me. can any one explain it for me... thanks
If a RadButton is set to true in the code behind as being selected (with no actual click event or click activity) does it always visually manifest as being "selected". Meaning does it visually toggle back and forth in response to code-behind operations like ".Checked"=true?
Would this be accomplished with the "OnToggleStateChanged"? Perhaps changing the state manually?
The standard AJAX components I'm working with the Visual Studio don't seem to update themselves in response to code behind and seem to require some JavaScript which I'm trying to avoid.
Good morning guys,
In my aspx page I have the following code:
<telerik:RadTreeView runat="server" ID="RadTreeView1" OnClientNodeClicking="nodeClicking">
<Nodes>
<telerik:RadTreeNode runat="server" Text="All Trans" Expanded="true" >
<Nodes>
<telerik:RadTreeNode runat="server" Text="Approved" >
</telerik:RadTreeNode>
<telerik:RadTreeNode runat="server" Text="Entered" >
</telerik:RadTreeNode>
In my code behind I have the followign code to disable treenode:
string runFl = dt.Rows[0][4].ToString();
if (runFl == "I")
{
RadTreeView tree = (RadTreeView)RadComboBoxStatusGrp.Items[0].FindControl("RadTreeView1");
tree.FindNodeByText("Processed").Enabled = false;
"Processed" node get disable but when I click on this disable node it is appearing in combobox.
My question is:when I click on it I do not want to see this node in combobox at all.