Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
UltraWebGrid rows not updating right
posted

Created a usercontrol that sits within an UpdatePanel and a Panel. The usercontrol contains an UltraWebGrid. A user can enter in two rows, click next and the data looks fine. When the user clicks back the web grid displays fine, the user then changes the previously entered data and when looping through the rows, the data seems to not get the newly changed data for row 0 and uses row 1 data for row 0, it also used the original data from subsequent rows.

Example, enter into UltraWebGrid:

Row 0 = select 1, 1.00

Row 1 = select 2, 2.00

Update UltraWebGrid rows as follows and click next:

Row 0 = select 3, 3.00

Row 1 = select 4, 4.00

When the grid is saved the data saves as:

Row 0 = select 4, 4.00

Row 1 = select 2, 2.00