Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

IE only selection issue for TextItem with mask

$
0
0
Hi,

We observe an issue for TextItem with mask: when we try to select the content of the textitem by mouse, we need to click the field twice. First click on the masked text item does not allow to select the value and only second click performs the selection.

This issue happens on IE only with SmartClient_v83p_2015-01-31_PowerEdition.

Please try the following standalone:
Steps to reproduce:
1. Use mouse to select the whole content of the "Phone no" field which has a mask. First click does not allow to select the value and only second click performs the selection.
2. For the "Mobile no" field without mask, the selection works fine on first click.

Thanks,
Robin

Code:

isc.DynamicForm.create({
    width: 400,
    fields: [
        {name: "Name", title: "Name", type: "text"},
        {title: "Phone no", type: "text", mask: "###-###-####", defaultValue: "6471111111", ID: "PN"},
        {title: "Mobile no", type: "text", defaultValue: "647-111-1111", ID: "MN"},
    ]
});

PN.setCanEdit(false);
MN.setCanEdit(false);


Viewing all articles
Browse latest Browse all 4756

Trending Articles