Hi Telerik team,
In my rad grid Edit popup, I'm saving the excel data to the DB and importing it to the server.It is taking a lot of time to save the data to DB and import an excel sheet[as it contains many rows] to the server.so I want to make this process as Back ground process[Threads] so that i can access other pages till it completes.
I have used the below format..
Event :
protected void btn_Save(sender o,Eventargs e)
{
Thread obj = new Thread(new ThreadStart(SaveData));
obj.IsBackground = true;
}
Method:
public void SaveData()
{
....
....
}
It is not working...
when the editpopup is opened the background grid is covered with Opacity.
In my rad grid Edit popup, I'm saving the excel data to the DB and importing it to the server.It is taking a lot of time to save the data to DB and import an excel sheet[as it contains many rows] to the server.so I want to make this process as Back ground process[Threads] so that i can access other pages till it completes.
I have used the below format..
Event :
protected void btn_Save(sender o,Eventargs e)
{
Thread obj = new Thread(new ThreadStart(SaveData));
obj.IsBackground = true;
}
Method:
public void SaveData()
{
....
....
}
It is not working...
when the editpopup is opened the background grid is covered with Opacity.