Hi,
I am facing one issue,
My requirement is ,
I have created a Tab, with Tab headers and the Tab content,
Now I just want to clone the header part remove it from this location and place it in the new location.
But the newly placed header is not working.
Egs :-
Created the Cshtml file for the tab - so tab is created here,
In the same Cshtml file I have an empty div element.
In js, I am trying to clone the Tab header and place in the other div,
The js code
$('#origin').find('.e-tab-header').clone(true,true).appendTo('#EF_Test');
#origin is the tab.
I am trying to place the header in this new div #EF_Test.
I just want to cut the header from this location and place it in new location, and expecting the rest functionalities to work as normal Tab functionalities.
Thanks
Darshan