Hi,
I am still struggling to make sense of how to process at the server end the status of the check boxes (ticked/unticked).
I can load the grid and have it display the check boxes correctly (from the db).
Where is gets confusing is after I have unchecked the boxes, then press the update button to initiate the server side logic.
The server starts processing this bit of code:
Grid1.Columns.Item(5) contains the check box.
However, it always says that Grid1.Columns.Item(5) = TRUE, which it is not, it has been unchecked by the user. It was true when it was first loaded, but now it should be false.
Am I missing something? If I know the true state of each checkbox, then I can create the corrected SQL to send to the db, but at the moment, it is gibberish.
For Each item In Grid1.CheckedItems
If (item.Cells(5).Value) Then ' this is always true!
test = item.Cells(0).Value ' I will use this bit to build into my SQL statement
test1 = item.Deleted ' I don't really need this, I just thought it might be of use
End If
for a
We have purchased the licence for Grid & the Ajax uploader. The other aspects of the product seem fine and I'm sure this can be done. I suspect I am on the wrong track.
Thanks