Looks nice. Some elements can be converted to a theme. However, you are always restricted by the size and location of existing controls in existing applications. Some of the 3D transformations can also already be done in Wisej. You can, for example, transform a floating window and make it smaller and rotated on a 3D space quite easily using the Rotation component and then restore it when activated. It’s fun and easy with Wisej.
Maybe I’ll put a sample together.
I’m using version 1.3.65.
PushButton in Toolbar still doesn’t work (no changes after it has been pushed).
The property .Pushed on the button isn’t updated after i click the button: do i have to update it programmatically?
Thank
Jonatha
Google blocks all requests from iframes, they don’t want anyone to show their site inside another.
https://jsfiddle.net/wisej/p70xhkko/
Refused to display ‘https://www.google.com/’ in a frame because it set ‘X-Frame-Options’ to ‘sameorigin’.
Unfortunately you are correct. Thanks. Use this quick patch please. You can add it to Default.html or into a js file and add the file to a <script> tag in <head>. This will be fixed quickly.
<script>
Wisej.onLoad = function () {
qx.Mixin.define(“wisej.web.desktop.TaskBarPatch”, {
members: {
// hides the taskbar when there are no visible children: task bar items.
_updateTaskBarVisibility: function () {
var anyVisible = false;
var items = this.getChildren();
for (var i = 0; i < items.length; i++) {
var item = items[i];
var window = item.window;
if (window && window.isVisible() && window.getShowInTaskbar()) {
anyVisible = true;
break;
}
}
if (anyVisible)
this.show();
else if (this.isAutoHide())
this.exclude();
},
}
});
qx.Class.patch(wisej.web.desktop.TaskBar, wisej.web.desktop.TaskBarPatch);
}
</script>
It is working now. The wrapper for the report viewer actually works now without having to do anything other then creating this class
public partial class WebReportViewer : Wisej.Web.Ext.AspNetControl.AspNetWrapper<Stimulsoft.Report.Web.StiWebViewer>
In my other tests I realize that
– Android + Firefox = Fails, but no idea why… events not raised… seems something of autocomplete or browser independient (but raised if i commit a “space” or “enter” key (from touch screen keyboard) …)
– Android + Chrome = Success, seems to work as expected
I forgot to mention that the issue was for the combobox control
In the latest release if you set the sessionTimeout to zero in Default.json the session should never expire.
We added that to start supporting the new Wisej standalone feature, where a Wisej app can run as a single desktop executable.
What kids of issues do you see? I tried with iOS and it seems to work well: http://wisejmobilekeyevents.azurewebsites.net/
Hi Andrew,
not a stupid question at all.
IIS and IIS express do need to have the mime type registered.
Add this to your web.config:
<system.webServer>
<staticContent>
<remove fileExtension=”.mp4″ />
<mimeMap fileExtension=”.mp4″ mimeType=”video/mp4″ />
</staticContent>
Please note that only mp4, ogg, webm, asf and flv formats are supported.
Best regards
Frank
When you assign the Sorting property the control already performs a sort.
Then when you call
.Sort(Function(x, y) String.Compare(x.SubItems(e.Column).Text, y.SubItems(e.Column).Text))
It always sorts in one direction. You have to either invert x and y on descending or negate the result of Compare.
See attached sample for customized sorting.
Hi Tim,
here is a revised sample that contains a couple of improvements and additions to the previous one:
Best regards
Frank
Thanks for the help on this. In internet explorer and edge it shows the error message but lets you sign. It works fine in chrome.
SourceMap http://cdn.syncfusion.com/js/assets/external/jquery-1.10.2.min.map read failed: One or more errors occurred..Exception was thrown at line 20, column 5 in eval code
0x800a01b6 – JavaScript runtime error: Object doesn’t support property or method ‘ejSignature’
This is happening on the sample that was attached as a solution.
Hi Tim,
please find attached a sample using eSignature.
Take a look at InitScript and Packages properties of the widget.
Best regards
Frank
I have attached a sample project.
Can you attach the project?
Looks like the library with the eSignature jquery method from syncfusion was not loaded.
Also I worked around it by setting the width to 2. I just wanted you guys to know.
Hi Mark,
the new Wisej build (1.3.65) is online.
We are definitely interested in learning more about your applications and the viewer source code you offered. Thanks in advance !
Best regards
Frank
Hi Stanislav,
WJ-8238 is fixed in the latest Wisej release (1.3.65).
Best regards
Frank
Hi Andrew,
all enhancements are included in the latest Wisej build (1.3.65).
Best regards
Frank
