Thanks Frank and Luca, awesome support!
Hi Mariano,
please note that we added AutoComplete property to TextBox to make it use/deny browsers autocomplete.
We also added TextBox.AutoCompleteList that allows to set any list to be used for auto completion.
Both are included with our latest build (1.3.6.)
Best regards
Frank
Hi Michael,
this problem is also fixed in our latest build (1.3.6).
Best regards
Frank
Hi Michael,
the problem is fixed in our latest build (1.3.6).
Best regards
Frank
Hi Frank,
I did not get a notification. I just checked manually. Also, when installing the update it could not kill the AutoUpdater. It was removed from the taskbar icon list but not from memory. I had to kill in task manager to finish the update.
Thanks,
Robin
Great, thanks Robin.
Did you receive a notification of the AutoUpdater for 1.3.6 ?
Regards
Frank
Confirmed fixed in 1.3.6
Thanks!
Robin
Hi Ewan,
we are working on a Wisej version of your sample and will send you the code next week.
Best regards
Frank
Hi Michael,
Modal workflow works fine, the code is suspended and when you click OK it resumes. It’s the return code that doesn’t work because of a bug that tries to parse “ok” to “Ok” and then DialogResult.OK (all uppercase). If you change the button to Yes you can see that it’s parsed. This is fixed in the current (pending) update.
Best,
Luca
Fantastic, a developer that reads the documents. 🙂
You can either fire a message to a control or call a remote method.
Best,
Luca
Hi Gunter,
The scrollbars are displayed when AutoScroll = true. It’s the same in WinForms and Wisej, I don’t know about VWG, I can’t run it anymore. Otherwise the controls are truncated, the flow layout panel doesn’t resize the child controls unless they are anchored.
Best,
Luca
Hi Michael,
I could reproduce and logged bug WJ-7767 for it. We will inform you when it´s fixed.
Best regards
Frank
Hi Luca
ok that’s the behavior of winforms, in VWG the FlowLayoutPanel shows ScrollBars, when the contained controls exceed the size of the FlowLayoutPanel
Sorry for the xx, i misend something
Hi Luca
Having tested your example with some of my server reports I have noticed the following:
So it appears that something is preventing report viewer from running independently (I have set AsyncRendering to true).
These issues were not present in the VWG wrapper.
This issue seems to be, having looked into this further that OnInit is not firing reliably.
Thanks for your help
Ewan
Hi Michael,
did you add your keys to existing <appSettings> section or added another one ?
Having more than one <appSettings> section will fail.
Can you please post your complete web.config or send it to me: frank@iceteagroup.com
Thanks in advance.
Frank
Hi Luca, has the guide been published yet?
Hi Mariano,
Good question. We will add the AutoCompleteType property to the TextBox class. However, modern browsers more or less all ignore this attribute, but there are some workarounds, see https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion.
You can easily patch the base javascript class that creates input elements in wisej by addin this code in Default.html:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="wisej.wx"></script>
<script>
Wisej.onLoad = function () {
// define the MAutoComplete mixin
// to override the _createInputElement method.
qx.Mixin.define("MAutoComplete", {
members: {
_createInputElement: function () {
return new qx.html.Input("text", null, { autocomplete: "off" });
},
}
});
// patch the textfield base class using the MAutoComplete mixin.
qx.Class.patch(qx.ui.form.AbstractField, MAutoComplete);
}
</script>
</head>
<body></body>
</html>
You can add more attributes and and choose the value to set.
Best,
Luca
Hi Ewan,
copy of my answer to the AspNetControl:
the base class AspNetControl is not a UserControl and has the attribute [ToolboxItem(false)].
So derived components to appear in the toolbox must have the attribute [ToolboxItem(true)] and may have to be added to the toolbox.
Hope that helps.
Best regards
Frank
Hi Ewan,
the base class AspNetControl is not a UserControl and has the attribute [ToolboxItem(false)].
So derived components to appear in the toolbox must have the attribute [ToolboxItem(true)] and may have to be added to the toolbox.
Hope that helps.
Best regards
Frank
