All Answers

0 votes

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.

  • Luca answered May 16, 2017 - 4:43 pm
0 votes

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

 

1 vote

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’.

  • Luca answered May 15, 2017 - 10:05 pm
0 votes

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>

  • Luca answered May 13, 2017 - 5:14 pm
0 votes

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>

0 votes

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

  • Ser Gar answered May 12, 2017 - 11:27 pm
  • last active May 12, 2017 - 11:31 pm
0 votes

I forgot to mention that the issue was for the combobox control

  • Ser Gar answered May 12, 2017 - 11:18 pm
0 votes

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.

  • Luca answered May 12, 2017 - 11:08 pm
0 votes

What kids of issues do you see?  I tried with iOS and it seems to work well: http://wisejmobilekeyevents.azurewebsites.net/

  • Luca answered May 12, 2017 - 11:04 pm
0 votes
In reply to: How to play a video

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

 

0 votes

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.

 

  • Luca answered May 12, 2017 - 10:10 pm
0 votes
In reply to: Using Widget Control

Hi Tim,

here is a revised sample that contains a couple of improvements and additions to the previous one:

  • Changed the order of the scripts in the packages. Jquery is put on top.
    The order is important when it comes to dependencies. That´s why we added the Packages loader to Wisej.
    Otherwise the loading would be asynchronous and beyond our control.
    Only the scripts in the HTML page are loaded synchronously.
  • For chrome probably the jquery was loaded already,  but for IE / Edge not
  • We also added names to the scripts. While not really necessary in this sample it´s better to have them,
    especially when they are shared between extensions (e.g. jquery)
  • The initialization didn’t specify the width and height and it used this.container, so the jquery widget changed it to 100% 100%
  • The new sample also works in design mode.
  • Since you probably want to receive the signature from the widget and process it in your code, we extended the sample to
    transfer the signature automatically to a picture box (see Change event)

Best regards
Frank

0 votes
In reply to: Using Widget Control

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.

  • Tim Larson answered May 12, 2017 - 7:48 pm
  • last active May 12, 2017 - 7:49 pm
0 votes
In reply to: Using Widget Control

Hi Tim,

please find attached a sample using eSignature.

Take a look at InitScript and Packages properties of the widget.

Best regards
Frank

  • Frank (ITG) answered May 12, 2017 - 6:17 pm
  • last active May 12, 2017 - 6:35 pm
0 votes
In reply to: Using Widget Control

I have attached a sample project.

0 votes
In reply to: Using Widget Control

Can you attach the project?

Looks like the library with the eSignature jquery method from syncfusion was not  loaded.

  • Luca answered May 12, 2017 - 6:05 pm
0 votes

Also I worked around it by setting the width to 2. I just wanted you guys to know.

0 votes

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

0 votes
In reply to: Html ToolTip

Hi Stanislav,

WJ-8238 is fixed in the latest Wisej release (1.3.65).

Best regards
Frank

0 votes

Hi Andrew,

all enhancements are included in the latest Wisej build (1.3.65).

Best regards
Frank

Showing 9081 - 9100 of 11k results