Skip to main content
All docs
V19.1

GanttSettings.ClientVisible Property

Gets or sets a value that specifies the initial visibility state of an extension on the client.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public bool ClientVisible { get; set; }

Property Value

Type Description
Boolean

true to make an extension initially displayed on the client; false to render an extension to the web page, but make it initially hidden on the client side.

Remarks

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.CallbackRouteValues = new { Controller = "Gantt", Action = "FeaturesPartial" };
    ...
    settings.ClientVisible = false;
    ...
}).Bind(GanttDataProvider.Tasks, GanttDataProvider.Dependencies, GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments).GetHtml()
See Also