|
<div id='targetElement' className='control-section col-lg-12 defaultDialog dialog-target'>
<ScheduleComponent height='650px' ref={schedule => this.scheduleObj = schedule} selectedDate={new Date(2019, 0, 10)} popupOpen={(this.onPopupOpen.bind(this))}>
<ViewsDirective>
<ViewDirective option='Day' />
<ViewDirective option='Week' />
<ViewDirective option='WorkWeek' />
<ViewDirective option='Month' />
<ViewDirective option='Agenda' />
</ViewsDirective>
<Inject services={[Day, Week, WorkWeek, Month, Agenda, Resize, DragAndDrop]} />
</ScheduleComponent>
<DialogComponent id="defaultdialog" showCloseIcon={true} animationSettings={this.animationSettings} visible={this.hideDialog} width={'500px'} ref={dialog => this.dialogInstance = dialog} target={'#targetElement'} header={this.header} buttons={this.dlgButtons} content={this.content}>
</DialogComponent>
</div> |