I am new to ListView and looking for some initial guidance on technical approach for the following:
I hav a list of items displayed from a SQL datasource. The user has only one editing need, namely select yes or no via checkox.
I would like to present this list so that all list items are editable (the checkbox) without any action on the part of the user. I understand I need to build a list of "editindexes" after the dataset is filled. (I have an example picked up here, but it is in C and I only understand VB)
If I get those checkboxes to be editable, what is my next step in being able to respond to the user's selections?
Since the controls are databound, I am thinking that there would be an event on each checkbox selection that might be appropriate, or that all the boxes would be processed if I added a Save button and did something to commit the changes back to the database.
As you can see, this is my first venture into editable datasets and databinding, and just need to pointers on where & how to proceed.
I hav a list of items displayed from a SQL datasource. The user has only one editing need, namely select yes or no via checkox.
I would like to present this list so that all list items are editable (the checkbox) without any action on the part of the user. I understand I need to build a list of "editindexes" after the dataset is filled. (I have an example picked up here, but it is in C and I only understand VB)
If I get those checkboxes to be editable, what is my next step in being able to respond to the user's selections?
Since the controls are databound, I am thinking that there would be an event on each checkbox selection that might be appropriate, or that all the boxes would be processed if I added a Save button and did something to commit the changes back to the database.
As you can see, this is my first venture into editable datasets and databinding, and just need to pointers on where & how to proceed.