Hello,
Please see the following code:
In IE and FF the blur event is only fired once, like it should be. The alert is only shown once. But in Chrome it creates an endless loop.
How can I make the blur event on Chrome to behave like in IE and FF?
Regards Thomas
Please see the following code:
Code:
isc.VLayout.create({
ID: 'vertical',
width: "100%",
height: "100%",
members: [
isc.DynamicForm.create({
ID: "exampleForm",
width: 250,
fields: [{
type: "text",
name: "name",
title: "Name",
defaultValue: "Bob",
blur: function (form, item) {
exampleForm.setFieldErrors('name', 'Error', true);
alert(1);
}
},
{
name: "email",
title: "Email",
type: "text",
defaultValue: "bob@isomorphic.com"
}]
})]
});
How can I make the blur event on Chrome to behave like in IE and FF?
Regards Thomas
Comment