However, just for convenience I would like to allow my users to enter a comma as well as a delimiter. (german keyboard num pad just has a comma and not a dot), eg: 10,10,2012
My question is how I should organize my event handlers... Currently, I m attaching them to top uiComponent using live feature, so events have to bubble from inner component to top component. I would prefer that each uiComponent is just managing it s own events, which means to attach event handler to top and inner Component.
However, I do not know how I may stop events from bubbling outside of inner component. I m using jquery live cause dom of uiComponent might be dynamically changed.