LIDOR SYSTEMS

Advanced User Interface Controls and Components

IntegralUI Web

Documentation and API Reference


suspendLayout() Method

Temporarily suspends the update of the widget layout.

Parameters

This method doesn't have any parameters.

Return Value

This method does not return a value.

Remarks

Suspends the widget layout from updating, in order to increase performance. Best to use when multiple changes are required in the widget, like add/remove of large data set or when updates of multiple elements are required. This method requires a following call of resumeLayout method.

Version Information

Supported in: v1.0.

Example

In this example we are showing how to call this method.

var $obj = $('#widget').widget();

$obj.widget("suspendLayout");

// Add a custom code here

$obj.widget("resumeLayout");

See Also