S
Snog
Guest
Guest or Bot
I know this might seem strange, but I have an application where the autofocus for the fields being revealed shouldn't happen. So, I'm wondering if an option could be added to the disabler?
Options in js:
js code:
Code:
I think that's correct and I have...
Read more
Continue reading...
Options in js:
autofocus: true // if false, autofocus won't happenjs code:
Code:
Code:
if (this.options.autofocus)
{
var cb = function () {
XF.layoutChange();
select();
};
}
else
{
var cb = function () {
XF.layoutChange();
};
}
Read more
Continue reading...
S
B