I have written a custom ajax extender for use with ASP panels and JQuery dialogs. The problem I face is that I need multiple buttons to trigger the dialog, therefore attributes aren't really a viable option. I am hoping to do something like the following:
<ex:DialogExtender TargetID="pnlSomePanel">
<triggers>
<button ID="btnOne">
<button ID="btnTwo">
</triggers>
</ex:DialogExtender>
Does anyone know how I can add this custom "triggers" collection into my extender? Thanks.