Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is event bubbling
What is event bubbling ?
✍: Guest
Server controls like Datagrid, DataList, 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 there events to parent this is termed as event bubbling.
2007-10-24, 5967👍, 0💬
Popular Posts:
What is Concern in AOP? gA concern is a particular goal, concept, or area of interesth There are m...
What is the purpose of the wait(), notify(), and notifyAll() methods? The wait(),notify(), and notif...
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...
What is thread? A thread is an independent path of execution in a system.
Can we use the constructor, instead of init(), to initialize servlet? Yes , of course you can use th...