ContentPlaceholderLayoutItem.ClientVisible Property
Specifies the menu item’s initial visibility state on the client.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
Use the ClientVisible property to define an item’s initial visibility state.
Note
If an item’s server Visible property is set to false
, the item is not rendered into the web page at all, so it can’t be manipulated on the client side.
<dx:ASPxGridView ID="grid" runat="server" ...>
<EditFormLayoutProperties ColCount="2">
<Items>
<dx:GridViewLayoutGroup ColCount="2" GroupBoxDecoration="None">
<Items>
...
<dx:GridViewColumnLayoutItem ColumnName="Position" Width="100%" ClientVisible="False" />
<dx:GridViewColumnLayoutItem Caption="Notes" Width="100%" VerticalAlign="Top" >
<Template>
<dx:ASPxMemo ID="notesMemo" runat="server" Width="100%" Height="253" Text='<%# Bind("Notes") %>' />
</Template>
</dx:GridViewColumnLayoutItem>
</Items>
</dx:GridViewLayoutGroup>
</Items>
</EditFormLayoutProperties>
</dx:ASPxGridView>
See Also