What is Bubble Event ?

Answers were Sorted based on User's Feedback



What is Bubble Event ?..

Answer / mani

Events raised by child control handled by parent control is
called Bubble event

Is This Answer Correct ?    12 Yes 0 No

What is Bubble Event ?..

Answer / sudheer

parent control raised the child control events.ex:In the
grid view we are placing the one dropdown.But dropdown can't
raised the onselectedIndexchanged event.Just follow the
below code
<asp:GridView ID="GridView1" runat="server"
AutoGenerateColumns="False"
onrowcommand="GridView1_RowCommand"
onrowdatabound="GridView1_RowDataBound">
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="ddlItems" runat="server"
DataSource='<% #BindCombo() %>' DataValueField="AuthorID"
DataTextField="author"
OnSelectedIndexChanged="ddlItems_SelectedIndexChanged"
AutoPostBack="true">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
protected System.Data.DataSet BindCombo()
{
System.Data.DataSet ds = new System.Data.DataSet();
ds.ReadXml(Server.MapPath("./XmlFiles/DBFile.xml"));
return ds;
}
protected void ddlItems_SelectedIndexChanged(object sender,
EventArgs e)
{
foreach(GridViewRow row in GridView1.Rows)
{
DropDownList ddlList =
(DropDownList)row.FindControl("ddlItems");
string items = ddlList.SelectedItem.Text.ToString();
}
}

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What's the c# syntax to catch any possible exception?

0 Answers  


Is c# good for web development?

0 Answers  


Explain About remoting and web services. Difference between them

0 Answers   Microsoft,


What is the difference between writeline and write in c#?

0 Answers  


What is xml document how do you open it?

0 Answers  






What is a statement c#?

0 Answers  


What is polymorphism in c sharp?

0 Answers  


Define c# and list the features.

0 Answers  


How do you declare a method in c#?

0 Answers  


How do you create dlls in .NET

0 Answers   Digital GlobalSoft,


What is xaml in c#?

0 Answers  


What are the different types of classes?

0 Answers  


Categories