Behavior |
API in Essential® JS 1 |
API in Essential® JS 2 |
Width
|
Property: width
```
```
|
Property: Width
```
```
|
Readonly
|
Property: readOnly
```
<EJ.DateTimePicker id="datetimepicker" readOnly={true} ></EJ.DateTimePicker>
```
|
Property: readonly
```
<DateTimePickerComponent id="datetimepicker" value="5/5/2019" readonly={true}></DateTimePickerComponent>
```
|
Show/Hide the clear button
|
Not Applicable
|
Property: showClearButton
```
<DateTimePickerComponent id="datetimepicker" showClearButton={false} ></DateTimePickerComponent>
```
|
Height
|
Property: height
```
```
|
Can be achieved by
```
.e-control-wrapper.e-custom-style.e-date-wrapper.e-input-group {
height: 35px;
}
```
|
Html Attributes
|
Property: htmlAttributes
```
var htmlAttributes = {required:"required"}
<EJ.DateTimePicker id="timepicker" htmlAttributes = {htmlAttributes} ></EJ.DateTimePicker>
```
|
Not Applicable
|
Show/Hide the week number
|
Property: weekNumber
```
<EJ.DateTimePicker id="datetimepicker" weekNumber={true} ></EJ.DateTimePicker>
```
|
Property: weekNumber
```
<DateTimePickerComponent id="datetimepicker" weekNumber={true} ></DateTimePickerComponent>
```
|
Watermark text
|
Property: watermarkText
```
```
|
Property: placeholder
```
```
|
Disable/Enable
|
Property: enabled
```
<EJ.DateTimePicker id="datetimepicker" enabled={false} ></EJ.DateTimePicker>
```
|
Property: enabled
```
<DateTimePickerComponent id="datetimepicker" enabled={false} ></DateTimePickerComponent>
```
|
Enable/Disable the textbox editing
|
Property: AllowEdit
```
<EJ.DateTimePicker id="datetimepicker" allowEdit={false} ></EJ.DateTimePicker>
```
|
Property: AllowEdit
```
<DateTimePickerComponent id="datetimepicker" value="5/5/2010" allowEdit={false} ></DateTimePickerComponent>
```
|
zIndex
|
Can be achieved by
```
.e-datetime-popup.e-popup.e-custom-class {
z-index: 100 !important;
}
```
|
Property: zIndex
```
```
|
Specify the placeholder text behavior
|
Not Applicable
|
Property: floatLabelType
```
```
|
Event callback for each cell creation
|
Not Applicable
|
Event: renderDayCell
```
<DateTimePickerComponent id="datetimepicker" renderDayCell={this.onRenderCell.bind(this)} ></DateTimePickerComponent>
onRenderCell() {/** code block */ }
```
|
FocusIn event
|
Event: FocusIn
```
<EJ.DateTimePicker id="datetimepicker" focusIn={onFocus} ></EJ.DateTimePicker>
function onFocus() { /*Triggers when the popup gets focus*/ }
```
|
Event: focus
```
<DateTimePickerComponent id="datetimepicker" focus={this.onFocus.bind(this)} ></DateTimePickerComponent>
onFocus() {/** code block */}
```
|
FocusOut event
|
Event: focusOut
```
<EJ.DateTimePicker id="datetimepicker" focusOut={onFocusout} ></EJ.DateTimePicker>
function onFocusout() { /*Triggers when the popup gets focusout*/ }
```
|
Event: blur
```
<DateTimePickerComponent id="datetimepicker" blur={this.onBlur.bind(this)} ></DateTimePickerComponent>
onBlur() {/** code block */}
```
|
Change event
|
Event: change
```
<EJ.DateTimePicker id="datetimepicker" change={onChange} ></EJ.DateTimePicker>
function onChange() { /*Triggers when the value is changed*/ }
```
|
Event: change
```
<DateTimePickerComponent id="datetimepicker" change={this.onChange.bind(this)} ></DateTimePickerComponent>
onChange() { console.log("changed") }
```
|
Created event
|
Event: create
```
<EJ.DateTimePicker id="datetimepicker" create={onCreate} ></EJ.DateTimePicker>
function onCreate() { /*Triggers when the control is created*/ }
```
|
Event: created
```
<DateTimePickerComponent id="datetimepicker" created={this.onCreate.bind(this)} ></DateTimePickerComponent>
onCreate() { console.log(" Component Created") }
```
|
Destroy event
|
Event: Destroy
```
<EJ.DateTimePicker id="datetimepicker" destroy={onDestroy} ></EJ.DateTimePicker>
function onDestroy() { /*Triggers when the control is destroyed*/ }
```
|
Event: destroyed
```
<DateTimePickerComponent id="datetimepicker" destroyed={this.onDestroyed.bind(this)} change={this.onChange} ></DateTimePickerComponent>
onDestroyed(args) { console.log("destroyed")}
onChange(args){
this.destroy();
}
```
|