Skip to main content

ASPxClientFileManagerFileOpenedEventArgs.processOnServer Property

Gets or sets a value that specifies whether the event should be finally processed on the server side.

Declaration

processOnServer: boolean

Property Value

Type Description
boolean

true to process the event on the server side; false to completely handle it on the client side.

Remarks

The processOnServer property enables you to specify where the current user action should be processed - on the client side or the server side. If this property is set to false in a client event’s handler, the event is completely handled on the client side without a postback to the server. Setting the processOnServer property to true indicates that the final processing of the event should be performed on the server side, and so a round trip to the server is required. During such a round trip, the corresponding server-side event is fired, which if handled, allows any desired server-side action to be performed.

Note

The default value of the processOnServer property depends on whether the ASPxFileManager.SelectedFileOpened server-side event is handled. Thus, true is passed to the processOnServer property if the ASPxFileManager.SelectedFileOpened server event has a handler assigned. In other cases, processOnServer is set to false by default.

See Also