Hi All,
In our application we used telerik rad grid and timer control. Have a editable text box inside a grid. The timer interval is one min. In timer tick event I am saving grid data in to the session. There is around 500 lines in grid. There are two scenario .
1. Entered the value in editable text box of the grid. And check entered value from grid in code behind (in .cs file) am able to get all the values from the grid.
2. Entering the data in text box and continue till the end of the grid, meanwhile in the middle timer tick event fires then I am not getting all editable rows value in code behind of the grid.
Eg: Grid contains 300 rows to be entered. After inserting value in 200 rows timer tick fires and try to save the data of 200 rows.
But am able to get 130-150 rows of data in that timer tick event when try to read from grid data . In timer tick event i am using this code to read the grid value in code behind.
foreach (GridItem item in grid.Items)
{
RadNumericTextBox txtBox = (RadNumericTextBox)item.FindControl("txtBox");
}
Kindly someone help me to resolve this issue. Thanks in advance.
Regards,
Pavan