On my web form I need to allow the users to select mulitple rows within and then click delete, is there a way to allow for multi row selections and then get each row id so then can delete all the selected rows?
lots of ways, depending on the ui you want. you could have checkbox per
row and a delete button. client script could detect a click and fillin a
hidden field, etc.
-- bruce (sqlwork.com)
> On my web form I need to allow the users to select mulitple rows within
> and then click delete, is there a way to allow for multi row selections
> and then get each row id so then can delete all the selected rows?
Mike - 17 Aug 2007 17:03 GMT
I currently have a checkbox for this, though I dont' like it, it works for
now
> lots of ways, depending on the ui you want. you could have checkbox per
> row and a delete button. client script could detect a click and fillin a
[quoted text clipped - 5 lines]
>> and then click delete, is there a way to allow for multi row selections
>> and then get each row id so then can delete all the selected rows?