refreshMode - Refresh Mode

Determines the refresh mode: complete, partial, or none.

Category

basics

Syntax

refreshMode="complete|partial|norefresh"

Usage

In Design mode, click All Properties and look for refreshMode under basics.

Partial refresh means that a fragment of a submitted page is refreshed rather than all controls on the page. For partial refresh, specify refreshId if the refresh is not for the parent of the current event handler.

Complete execution is the default.

Examples

This is a Button control of type Submit which performs a complete refresh.
<xp:button value="submit" id="button1">
	<xp:eventHandler event="onclick" submit="true"
		refreshMode="complete" immediate="false" save="true">
	</xp:eventHandler>
</xp:button>