I there is a double click client event and I am using it but I was wondering if there is anyway to have the event postback to a server side event also. Essentially creating a double-click server-side event?
1 Answer, 1 is accepted
0
Atanas Korchev
Telerik team
answered on 03 Mar 2008, 09:15 AM
Hello Alfred Pena,
At the time being RadTreeView does not have a server-side DoubleClick event. You can simulate it by calling the _doPostBack routine from the client-side double click event. You can also use RadAjaxManager and its ajaxRequest method. Then you can consume the server-side AjaxRequest event. Here is a quick example:
ASPX:
<script type="text/javascript">
function onNodeDoubleClick(sender, args)
{
var ajaxManager = $find("<%=RadAjaxManager1.ClientID%>");