We want to include a special node item at the top of the DropDownTree that when checked by the user would toggle the embedded treeview's _checkChildNodes property. Of course, when the "special" item is checked DropDownTree automatically adds it to the Entry area. Is it possible to remove this newly added entry but keep the node checked?
I noticed this on the demo for batch editing and it is impacting my application as well. If you edit the value in a cell and then scroll the page, the edited value is ignored and the cell resorts to the value that was previously in the cell. Is there anyway to work around this?
How do I get the interactive google charts to work inside a rad ajax panel? I want to be able to post back the panel and update the data for the charts and have them redraw.
While reading the installation and deployment documentation for the Telerik ASP.NET AJAX tools, it states in several places that you need to install ASP.Net AJAX and provides a link to the ASP.Net AJAX toolkit downloads. Is this really true? I have tried several of the samples and do not have the ASP.Net AJAX toolkit installed and everything seems to run fine.
Also there are a lot of references to Visual Studio 2005, 2008, and 2010 and Windows Server 2003, and IIS5 and 6. No references to Visual Studio 2013 or Windows Server 2012, and IIS 8. I am not sure what does or does not apply to the newer Visual Studio 2013, .Net 4.5, and IIS 8 as they are not mentioned in the docs. It seems to me that the docs need an update or maybe just a new addendum of docs that apply to the newer tools and platforms.
I was looking for RadGridView sample's at telerik demo website and i did not found a demo the RadGridView don't use SqlDataSource to bind some data and some RadComboBox/RadDropDownList edit template columns.
Does anybody have an example of a radgridview that don't use SqlDataSources filled at code behind and have some RadComboBox/RadDropDownList edit template columns filled at code behind too?
This is working great.
But now, I have also to deactivate the RadGrid at doubleclick on a row. For this, I have created a javascript for OnRowDblClick for the RadGrid:
var script = @"
function RowDblClick(sender, eventArgs) {
$find(""" + editButton.ClientID + @""").click();
}";
var javaScript = new HtmlGenericControl("script");
javaScript.Attributes["type"] = "text/javascript";
javaScript.InnerHtml = script;
Controls.Add(javaScript);
The RowDblClick will be executed on DoubleClick - I have checked this with a alert(). But the Click-Eventhandler of the EditButton on the Serverside will not be executed. Can someone help me please how I can do this? - Thanks.