Hi,
I am doing a grid with a CRON expression maker. (Like this one: http://www.cronmaker.com/?0).
In my grid, I have one string field “Cron” but I need the user to complete several fields to be able to generate the “Cron” field.
While trying to do this I encounter two difficulties:
1) 1) I tried first to put the Cron expression maker into the grid “EditTemplate” (see Example1Page.razor joined)
But numeric fields can’t be edited with arrows. Do you know why? Is there any work-around?

1) 2) Then, I put the Cron expression maker into a separate dialog. (see Example2Page.razor joined)
The numeric fields work, but my value doesn’t update in the grid after I close the Cron edition dialog. How can I update the “Cron” field of the edit template after closing CRON editor?

Thanks for your help.
Best regards.
Francois
|
<GridColumn Field=@nameof(Order.Cron) HeaderText="Cron" EditType="EditType.DropDownEdit" Width="150">
<EditTemplate>
@{
...
<label class="e-float-text e-label-top">Cron value 1</label>
<SfNumericTextBox ID="Minutes"
Value="@CronValue1"
...>
</SfNumericTextBox>
...
<label class="e-float-text e-label-top">Cron value 2</label>
<SfNumericTextBox ID="Minutes"
Value="@CronValue2"
...>
</SfNumericTextBox>
}
</EditTemplate>
</GridColumn>
|
|
|