I inherited a project that makes use of DevExpress controls in a Microsoft VS MVC project. I am used to writing javascript, so added an event handler and used jQuery to attach it to a DevExpress combobox control.
But it doesn't handle the event. I used Chrome's inspection tool on the control, which revealed that DevExpress spawned a compound control whose ID was the design-time ID with a "_I" added. So I used the modified ID as the ID of the control to which I wanted to add the event handler.
Still no luck. I put a break point on the handler in Chrome's sources tab, and the breakpoint is never reached.
I have searched all over the DevExpress site and not found an explanation of how to handle this most commonplace of tasks.
What do I do?