I have 2 dropdowns (NewsSector, NewsSectorType). when i select values from these 2 dropdowns and click on Add button, it will add rows to grid.
For each row I have Delete icon(img button), when user click on this button i have to delete row from grid(not from database).
Pls note that on click of this delete button, data should not be deleted from db. only from the grid?
how to do this?
pls find the code below:
protected void RadGridNewsSectorType_ItemCommand(object sender, GridCommandEventArgs e)
{
if (e.CommandName == "Delete")
{
//pls help me to write code here
}
} grid.jpg
ASP.NET
Last Comment
Armand G
8/22/2022 - Mon
Obadiah Christopher
Please show us the code you have used to bind the gridview.
swathi111
ASKER
Hi,
Pls find the attached file for code which i used to bind the grid code.txt
Obadiah Christopher
Int index=((GridviewRow)sender).RowIndex
RadGridNewsSectorType.Rows.Delete(index);
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.