LIDOR SYSTEMS

Advanced User Interface Controls and Components

IntegralUI Web

Documentation and API Reference


resumeLayout() Method

Resumes the layout logic and updates the widget.

Parameters

This method doesn't have any parameters.

Return Value

This method does not return a value.

Remarks

Resumes the layout logic of the widget and updates it. In this process all changes to the widget data set and related DOM elements are updated. This method doesn't require a call to the suspendLayout method, internally calls the refresh 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("suspendeLayout");

// Add a custom code here

$obj.widget("resumeLayout");

See Also