call formview Databind event from Raisecallbackevent
-
Hi all, Is it possible to change the formview mode from insert to readonly or from readonly to insert from Raisecallbackevent(asynchronous postback] in asp.net!!! with __doPostback event of hidden button, I am able to do it. But I want to do this asynchronously. Please help
-
Hi all, Is it possible to change the formview mode from insert to readonly or from readonly to insert from Raisecallbackevent(asynchronous postback] in asp.net!!! with __doPostback event of hidden button, I am able to do it. But I want to do this asynchronously. Please help
Just put a transparent div over all the controls. When callback is raised and the control comes to the client side javascript, create an absolute position div with
opacity
set to almost 0. Stretch it to the whole screen. The page will look like readonly. :cool:Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
Just put a transparent div over all the controls. When callback is raised and the control comes to the client side javascript, create an absolute position div with
opacity
set to almost 0. Stretch it to the whole screen. The page will look like readonly. :cool:Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
with formview div layers does not help. The insert template has to be loaded when we are changing to insert mode. How do I make the Raisecallback event to load formview in different modes? I have this formview inside a usercontrol with gridview. and the parent page has other controls which should be editable.