Multiple handlers on same control
Posted: 30 May 2016
What happens if I bind two event handlers to the same event for the same element?
For example:
fd.field('FieldName').click(.../*Busines logic code*/...);
fd.field('FieldName').click(.../*a.e. validation*/...);
Does the last handler "win", or will both handlers be run?
For example:
fd.field('FieldName').click(.../*Busines logic code*/...);
fd.field('FieldName').click(.../*a.e. validation*/...);
Does the last handler "win", or will both handlers be run?