RadGrid for ASP.NET

RadGrid Send comments on this topic.
ClientSettings Property
See Also 
Telerik.WebControls Namespace > RadGrid Class : ClientSettings Property


Gets a reference to the GridClientSettings object that allows you to set the properties of the client-side behavior and appearance in a Telerik RadGrid control.

  

 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property ClientSettings As GridClientSettings
Visual Basic (Usage)Copy Code
Dim instance As RadGrid
Dim value As GridClientSettings
 
value = instance.ClientSettings
C# 
public GridClientSettings ClientSettings {get;}

Return Value

A reference to the GridClientSettings that allows you to set the properties of the the client-side behavior and appearance in a Telerik RadGrid control.

Example

Use the ClientSettings property to control the settings of the client-side behavior and appearance in a Telerik RadGrid control. This property is read-only; however, you can set the properties of the GridClientSettings object it returns. The properties can be set declaratively using one of the following methods:

  • Place an attribute in the opening tag of the Telerik RadGrid control in the form Property-Subproperty, where Subproperty is a property of the GridClientSettings object (for example, ClientSettings-AllowDragToGroup).
  • Nest a <ClientSettings> element between the opening and closing tags of the Telerik RadGrid control.

The properties can also be set programmatically in the form Property.Subproperty (for example, SortingSettings.AllowDragToGroup). Common settings usually include the behavior and appearance on the client-side.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also