is there any option for getSize of the tabbar?

Hi,

As we do have ‘setSize’ function of a Tabbar to set height and width, is there any way to get the height/width of the created Tabbar?

My actual requirement is to update the height of the Tabbar dynamicaly, to use setSize for this change i am in need of the current tab width to set.

so either getSize or a function to set only height of the tab would be helpful.

Please suggest if we have any option for this approach?

Thanks,
Vijay

Hi,

var width = document.getElementById(“containerId”).offsetWidth;

Where containerId is the id tabbar container

Thanks Alex.