ASPxClientScheduler.SetToolbarVisible(visible) Method
Specifies whether the toolbar is visible.
Declaration
SetToolbarVisible(
visible: boolean
): void
Parameters
Name | Type | Description |
---|---|---|
visible | boolean |
|
Remarks
The scheduler’s toolbar includes the ASPxDateNavigator, ASPxViewVisibleInterval and the ASPxViewSelector. Their visibility on the server side is controlled by the following properties:
- ASPxSchedulerOptionsBehavior.ShowViewNavigator
- ASPxSchedulerOptionsBehavior.ShowViewSelector
- ASPxSchedulerOptionsBehavior.ShowViewVisibleInterval
<OptionsBehavior ShowViewNavigator="true" ShowViewSelector="false" ShowViewVisibleInterval="true" />
Use the SetToolbarVisible method to obtain a toolbar’s visibility state on the client. Then, the toolbar’s visibility can be dynamically changed on the client side using the ASPxClientScheduler.SetToolbarVisible
method.
See Also