refresh

Refreshes the LoadingPanel component.

Accepts an optional dictionary of settings that will override the initial settings passed to the constructor.

As an alternative, you can destroy the component and initialize it with a set of new options, using its constructor.

<script type="text/javascript">
    $(function () {
        $("#loadingpanel1").shieldLoadingPanel({
            text: "Loading...",
            showImage: false
        });

        // update the text
        $("#loadingpanel1").swidget("LoadingPanel").refresh({
            text: "Some other text..."
        });
    });
</<script>