Hi,
In my aspx page, I got two List view and an add button. I am trying to remove one row from the list view and adding it to another List view. The button click event is working fine for the first time. But not working on the second time.
My settings
if I remove the above settings code, the button click event is working fine.
When I checked the generated html on firebug the following click event disappears on second time. Any idea how to fix it? am I missing any settings? Thanks for the help.
onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$cmdAdd','')"
In my aspx page, I got two List view and an add button. I am trying to remove one row from the list view and adding it to another List view. The button click event is working fine for the first time. But not working on the second time.
My settings
<telerik:AjaxSetting AjaxControlID="cmdAdd"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="lv1" /> <telerik:AjaxUpdatedControl ControlID="lv2" /> </UpdatedControls> </telerik:AjaxSetting>
if I remove the above settings code, the button click event is working fine.
When I checked the generated html on firebug the following click event disappears on second time. Any idea how to fix it? am I missing any settings? Thanks for the help.
onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$cmdAdd','')"