Request a client-side refresh.

Namespace: DayPilot.Web.Mvc
Assembly: DayPilot.Web.Mvc (in DayPilot.Web.Mvc.dll) Version: 8.0.5796.0 (8.0.5796.0)

Syntax

C#
protected void Update(
	Object data,
	CallBackUpdateType type
)
Visual Basic
Protected Sub Update ( _
	data As Object, _
	type As CallBackUpdateType _
)
Visual C++
protected:
void Update(
	Object^ data, 
	CallBackUpdateType type
)

Parameters

data
Type: System..::..Object
Custom data to be sent to the client side. It will be accessible as "data" object in AfterRenderJavaScript. Can be a simple object (int, string), a List, or a Dictionary.
type
Type: DayPilot.Web.Mvc.Enums..::..CallBackUpdateType
Refresh type requested (None, EventsOnly, Full).

See Also