Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Bishoy George #1
How to detect selected items?
I have a datagrid with a template column in its template item I put a check
box.
How to determine which check boxes are selected when a button is clicked.
Notice: these check boxes are separate and are not check box list items.
Thanks alot
Bishoy George Guest
-
Remove multiple selected items listbox
How, using asp.net (vb.net), can I remove multiple selected items from a listbox. Everything I try does not seem to work. Thanks in advance. -
Populating listbox with selected items
Hi All, I've got a form on which a customer's record is edited/updated. There is a listbox that should show a full list of options with only the... -
Datagrid selected items with checkbox
I read some articles about the way to find the rows having his checkbox checked. Here is the code Private Sub btnModifier_Click(ByVal sender... -
Retaining selected items after pagechange or sort
Hi, I've created a datagrid which has 4 columns, a 'checkbox' column, ID, Name and and image. My HTML looks like... <asp:DataGrid... -
Loop through the listbox to read selected items
Hi, I am trying to loop through the listbox and read the selected items from the list, within a CLICK event on an aspx page. The following is... -
Eliyahu Goldin #2
Re: How to detect selected items?
Use sender parameter of the CheckedChanged event handler. It is a reference
on the checkbox that fired the event. From that reference, using Parent
property, you can navigate up to the datagrid item should you need to.
Eliyahu
"Bishoy George" <bishoy@bishoy.com> wrote in message
news:eVg9%23Df7FHA.4076@tk2msftngp13.phx.gbl...>I have a datagrid with a template column in its template item I put a check
>box.
>
> How to determine which check boxes are selected when a button is clicked.
>
> Notice: these check boxes are separate and are not check box list items.
>
> Thanks alot
>
Eliyahu Goldin Guest



Reply With Quote

