sai
What’s a bubbled event?
By sai in ASP.NET on Nov 30 2006
  • Shraban
    Feb, 2016 5

    Simply calling a parent control's event from a child control is called Event bubbling. Handling child controls events through parent control in data bind controls known as event bubbling. Server controls like Datagrid, DataList, and Repeater can have other child controls inside them.Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid, datalist, repeater), which passed to the page as "ItemCommand" event. As the child control send events to parent it is termed as event bubbling.

    • 0
  • NAVANEETHAN KRISHNAN
    Feb, 2008 19

    When you have a rich control, like DataGrid, Repeate dataList, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of its constituents.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS