Hi,
I work with visual studio 2005 and infragistic NetAdvantage 2006 Volume 2 CLR 2.0.
I have a webTab and i have two event clientside define as this:
<ClientSideEvents Click="alertMessage" />
<ClientSideEvents AfterSelectedTabChange="afterSelectedTabChange" />
the click launch a simple method and display a message and afterSelectedTabChange display the id of the tab in a alert js.
when i run the page i click for testing, the alertmessage is well execute but the afterSelectedTabChange is NEVER EXECUTE ;-( !
I have place in this javascript function a debugger; but i never enter inside !
if i delete the afterSelectedTabChange that work someone can tell me:
HOW I CAN DO FOR TWO LAUNCH TWO CLIENT SIDE FUNCTION !?
thanks for all
Christophe
Hi Ivan,
That's great that's work fine ;-)
That's exactly what i want !
thanks for your time
christophe
Hello,Please try to add Click and AfterSelectedTabChange events in same tag That have to work propertly. Please takae a look at the piace of code below: <ClientSideEvents Click="Click" AfterSelectedTabChange="AfterSelectedTabChange" />Hope this helps.