Hi all,
I've building a doucment management system, so i"ve got a menu RadMenu on the top, a RadTreeVew on the left and AsP list view on the right
The listview has Radbuttons for each file and folder and via Javascript I've got the click and Double click events to fire.
On the double click I make a AJAX REquest using the code below passing in a string arguement and reload the ListView.
I've building a doucment management system, so i"ve got a menu RadMenu on the top, a RadTreeVew on the left and AsP list view on the right
The listview has Radbuttons for each file and folder and via Javascript I've got the click and Double click events to fire.
On the double click I make a AJAX REquest using the code below passing in a string arguement and reload the ListView.
function InitiateAjaxRequest(RadAjaxManagerID,arguments) {
var ajaxManager = $find(RadAjaxManagerID);
ajaxManager.ajaxRequest(arguments);
}
After the AJAX Request completes all Telerik scripts stop working,the RadTree,RadMenu and RadComboBox top working.
any ideas?