This is a migrated thread and some comments may be shown as answers.

Setting a Fade on Window as well as outer click close

2 Answers 79 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Danny
Top achievements
Rank 1
Danny asked on 30 Mar 2020, 02:40 PM

Hello,

I am trying to implement a Fade component on to my Window Dialog component as well as make it so when the user clicks outside of the Window it closes it. Kind of like other UI Modals.

      <span className="k-icon k-i-zoom" onClick={toggleWindow}></span>

      <Fade>
      {visible &&
        <Window
          modal={true}
          onClose={toggleWindow}
          initialHeight={420} 
          initialWidth={700}
          initialLeft={300}
          initialTop={130}
        >
          {props.flag === 'bond' && 
          <Input
            name={'Search Bond'}
            label={'Search Bond'}
            onChange={searchChanged}
            className="bond-input"
          />}
          <Grid
            className="bond-grid"
            reorderable
            sortable
            data={bonds}
            rowRender={rowRender}
          >
            <GridColumn field="cusip" title="Cusip" width="98px" headerClassName="bond-header" />
            <GridColumn field="issuer_short_name" title="Name" width="200px" headerClassName="bond-header" />
            <GridColumn field="maturity" title="Maturity" width="100px" headerClassName="bond-header" />
            <GridColumn field="coupon" title="Coupon" width="80px" text="align-right" headerClassName="bond-header" />
            <GridColumn field="bbg_ticker" title="BBG Ticker" width="150px" headerClassName="bond-header" />
          </Grid>
        </Window>}

 

2 Answers, 1 is accepted

Sort by
0
Danny
Top achievements
Rank 1
answered on 30 Mar 2020, 02:42 PM
meant to add </Fade> at end

Thanks
0
Stefan
Telerik team
answered on 31 Mar 2020, 06:51 AM

Hello, Danny,

There are specific when applying an animation to the Window component.

Please check the following GitHub issue that has more information on this and a runnable example:

https://github.com/telerik/kendo-react/issues/326

I hope this is helpful.

Regards,
Stefan
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
General Discussions
Asked by
Danny
Top achievements
Rank 1
Answers by
Danny
Top achievements
Rank 1
Stefan
Telerik team
Share this question
or