jQWidgets Forums
jQuery UI Widgets › Forums › Editors › Input, Password Input, TextArea, ColorPicker, Rating, TagCloud, Loader › Error when changing focus Password Input
Tagged: password, PasswordInput
This topic contains 5 replies, has 2 voices, and was last updated by Peter Stoev 6 years, 9 months ago.
-
Author
-
Hello, I have problemma.
When changing the focus from the password field, an error appears: “type property can not be changed”
I skip the code for an example, all necessary libraries have been added
error “0x800a139e – JavaScript runtime error: the type property can not be changed”<link href="@Url.Content("~/Content/themes/base/jquery-ui.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/jqwidgets/styles/jqx.base.css")" rel="stylesheet" type="text/css" /> <script src="@Url.Content("~/Scripts/jqwidgets/jqxcore.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxpasswordinput.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxinput.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxdatetimeinput.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxcalendar.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxtooltip.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxbuttons.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxscrollbar.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxlistbox.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxdropdownlist.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxexpander.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxvalidator.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxscrollbar.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/jqxscrollbar.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/Global/Localisation.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/globalization/globalize.culture.ru-RU.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jqwidgets/globalization/globalize.js")" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $("#password").jqxPasswordInput({ width: '300px', height: '30px', showStrength: true, showStrengthPosition: "right", localization: { passwordStrengthString: "Сложность пароля", tooShort: "Слишком короткий", weak: "Слабый", fair: "Нормальный", good: "Хороший", strong: "Сильный" } }); $("#passwordConfirm").jqxPasswordInput({ width: '300px', height: '30px', }); }); </script> <input style="margin-top: 15px;" id="password" type="password" /> <input style="margin-top: 15px;" id="passwordConfirm" type="password" />
what can be problemma help please
the code is taken from the demo version
Hi Kyvaldenius,
Which browser and version do you use?
Best Regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.comGoogle Chrome 68.0.3440.106
Internet Explorer 11.0.9600.18230With the current version, we cannot reproduce that. Example: http://jsfiddle.net/yf6j07mk/. Could you check whether you use the current version of jQWidgets – 6.0.6? Could you update the example I sent you or provide us steps to reproduce it?
Best Regards,
Peter StoevjQWidgets Team
https://www.jqwidgets.com -
AuthorPosts
You must be logged in to reply to this topic.