Hello
I've just tried with the new build and it seems that when the close action is not defined it continues closing the window with the escape key.
Am I doing something wrong ?
@(Html.Kendo().Window().Draggable().HtmlAttributes(
new
{ @
class
=
"cptTiersFenetre"
})
.Modal(
true
).Name(@Model.idView +
"cptTiersFenetre"
).Resizable(r => r.Enabled(
true
))
.Title(
"Compte tiers - Paramètres"
).Visible(
false
)
.Actions(a=>a.Custom(
"Fermer"
))
)
Edit :
Woops... It seems that I have not done the update correctly (certainly missing to update some js files) it now works as expected : when the action "close" is not defined then the ESC key will not close the window.
Thanks for this update !