Question T9777
Visible to All Users

Translation Tab Click event - Angular

created 3 years ago

Is there any translation tab click event for angular package ?

Answers approved by surveyjs Support

created 3 years ago

Hello,
Sure, what version do you use?
You can use creator.onActiveTabChanged:

JavaScript
creator.onActiveTabChanged.add((sender, options) => { if(options.tabName === "translation") { alert("Translation tab is showing now"); } });

PS: The same code should work in Creator V1.

Thank you,
Andrew
SurveyJS Team