What is Bubble Event ?
Answers were Sorted based on User's Feedback
Answer / mani
Events raised by child control handled by parent control is
called Bubble event
| Is This Answer Correct ? | 12 Yes | 0 No |
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 |
Do loops c#?
What are functions in c#?
About a class access specifiers and method access specifiers ?
Can a class have multiple constructors c#?
What?s class SortedList underneath?
What is a Managed Code??
What is difference between string and string builder?
What is event sourcing in c#?
How many types of constructors are there in c#?
What is strong name assembly?
If the interface in c# only contains the declaration of the methods and we need to define those methods in the class, then why we use the interface?
What is satellite assembly? And steps to create satellite assembly?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)