Skip to main content
A newer version of this page is available. .

MVCxClientDateEdit.Cast(obj) Method

Converts the specified object to the MVCxClientDateEdit type.

Declaration

static Cast(
    obj: any
): MVCxClientDateEdit

Parameters

Name Type Description
obj any

The client object to be type cast.

Returns

Type Description
MVCxClientDateEdit

The converted client object specified by the obj parameter.

Remarks

Call the static Cast method to cast the specified client object to the MVCxClientDateEdit type. As a result, the type specific IntelliSense information can be displayed for the object.

Example

Convert the event source object passed to a client event’s handler.

<ClientSideEvents Init="function(s, e) { 
     var clientObject = MVCxClientDateEdit.Cast(s);
}" /> 

Convert a client object accessed by its SettingsBase.Name property value.

@Html.DevExpress().DateEdit(
     settings => {
          settings.Name = "MVCxClientDateEdit1";
...
var clientObject = MVCxClientDateEdit.Cast('MVCxClientDateEdit1'); 
See Also