Hello,
I set ItemClick Postback to Async for WebExplorerBar and add AJAX response cleint function. But this function isn't firing, though server side code handler for click is firing. ItemSelected Postback is Off.
I attach the sample solution.
Any help with that?
Hello Andrey,
Please do not hesitate to contact me if you are still in need of assistance.
Thank you for posting in the community.
I know it`s been a while since you posted but if you are still in need of assistance I would be glad to help.
Since this event is called after it gets the AJAX response from the server what I can suggest for achieving you requirement is setting ItemSelected`s AutoPostBackflag to Async as well as TemClicked AutoPostBackFlag. For example:
<AutoPostBackFlags ItemClick="Async" ItemSelected="Async" />
In this scenario the event is going to be fired and your alert is going to be shown.
I modified your sample project and I am attaching it for your reference.
Please let me know if you have any additional questions regarding this matter.
Hi,
Any update please?