resize method
qlik.resize(ID)
Method used to send a resize event to all Qlik Sense objects.
- Since:
-
- 1.0
Parameters
Name | Type | Description |
---|---|---|
ID | string | Object id. Optional: if no ID resize event will be sent to all objects |
Example
//create the tabs and make qlik objects resize when a new tab is selected
$("#tabs").tabs().bind('tabsselect', function(event, ui) {
qlik.resize();
});