Can anybody help in calling the screen.showTab("TabName") using the JQuery! I am using Visual Studio 2015 Community Edition.
The same event is getting triggered from the .lsms.cs file but not .htm file (Inside the Script tag)
The way I am calling the showTab method from .lsml.cs is,
$(screen).on('templateLoaded', function (path) {
$('#tabOne').bind("click", function () {
screen.showTab("TabOne");
});
});