All Answers

0 votes

Hi Jesper,

we have several options for deployment and offer individual licensing plans. Please get in touch with us directly so that we can discuss your needs and work out an agreement that will fit well. We have set up such agreements in similar scenarios already and do offer embedded licensing as part of our Technology Partner program.

You can reach me at sales[at]wisej.com

Thanks
Thomas

0 votes
In reply to: Google Maps 403 Error

maps.googleapis.com is returning 403 (forbidden). Google is blocking your IP probably because of excessive usage. We don’t have any control over google maps (I wish we did :)). Google has started charging for the usage of google maps recently. There are thousands of posts around with the same issue. Changing the api key will not help. You can read more about their new maps policy, usage, charges, etc. on google maps.

I can run the sample without problems. This is not a wisej issue.

  • Luca answered Jul 23, 2018 - 11:38 pm
0 votes
In reply to: Google Maps 403 Error

is it being block by the usage of ApiKey?

I’ve down loaded googleMaps project from Wisej site and can’t run that app either.

it’s using ApiKey, AIzaSyDJ13giW35qbt9Qsznjy_CFqMJMQlAjoSw , which is not same as mine

getting attached error.

 

  • Michelle Hobbs answered Jul 23, 2018 - 10:44 pm
  • last active Jul 23, 2018 - 11:33 pm
0 votes

You are using LinkMenuItem instead of MenuItem without an HRef. LinkMenuItems create navigation links. Use the default MenuItems and it will work fine.

  • Luca answered Jul 23, 2018 - 9:59 pm
0 votes

You are using LinkMenuItem instead of MenuItem without an HRef. LinkMenuItems create navigation links. Use the default MenuItems and it will work fine.

  • Luca answered Jul 23, 2018 - 9:59 pm
0 votes

Hi Sergio,

with our latest Wisej development build (1.5.7) you can set the TabSizeMode to one of these values:

  • Normal
  • Fill
  • Center
  • Fixed

Best regards
Frank

0 votes
In reply to: Google Maps 403 Error

It’s not caused by Wisej. You are probably being blocked by the new google maps limits.

  • Luca answered Jul 23, 2018 - 9:48 pm
0 votes

Hi,

this is my sample, where it does not work when I click on a splitbutton item.

0 votes
In reply to: MDI child

Hi Ulisses,

Please have a look at MDIExample sample at GitHub.

  • Tiago (ITG) answered Jul 23, 2018 - 8:42 pm
  • last active Jul 23, 2018 - 8:43 pm
0 votes

You can set the header background to white, or reduce the width, or make the last column fill the remaining space using FillWeight = 1 and change the size mode to fill.

  • Luca answered Jul 23, 2018 - 5:32 pm
0 votes

The audio/video control in Wisej uses HTML5 <audio>, <video> tags.

You can use wavesurfer.js in a Wisej Widget control without limits. There are several integration samples with source code here. If you encounter some issues while using the third party widget, please post a sample.

  • Luca answered Jul 23, 2018 - 5:30 pm
0 votes

Hi all,

Animation value doesn’t seem to have any effect for me when setting in UpdateData(x).

It always seems to be 300mS.

Saying that, perhaps I’m doing something wrong.

I have two arrays, one for data and the other for x-axis time which I’m adding a new datapoint to every second.
I then update the chart with UpdateData(x).

Visually this looks awful because the chart is cleared and then loaded with the latest dataset, every second.

What I’m trying to achieve is a smoothiechart-like appearance (i.e. a scrolling stripchart) but using chartjs.
I need to use chartjs because I need to be able to pause the chart and scroll back and forth through historic data.

Any tips?

Cheers

 

  • Darren answered Jul 22, 2018 - 11:16 pm
1 vote

Hi Edmond,

yes, simply set ShowInVisibilityMenu property of the column to false.

Best regards
Frank

0 votes

Hi,

it´s not clear to me what you are trying to achieve here.
Can you please put together a quick demo app with the questions marked in code that you have ?

Thanks in advance.

Best regards
Frank

0 votes

Hi,

can you please create a complete test case so we can inspect that issue.
With your details we could not yet reproduce it.

Thanks in advance.

Best regards
Frank

0 votes
In reply to: New maps library?

Looks like a nice library. It’s easy to use as-is in a Wisej.Web.Widget. We may add it using an object model similar to the google maps extension in the future.

  • Luca answered Jul 21, 2018 - 8:26 pm
0 votes

Hi Darren,

I use a lot of time axis in my charts, mainly for seconds (its a real-time dashboard).

My code is (roughly):

            LineOptions Options = new LineOptions();
            // X-axis settings
Options.Scales.xAxes[0].Type = ScaleType.Time;
Options.Scales.xAxes[0].Time.Round = TimeScaleTimeUnit.second;
Options.Scales.xAxes[0].Time.TooltipFormat = “LL LTS”;
            Chart.Options = Options;
Then for each point I add:
                    Chart.Labels[DataPoints – 1] = TestTime.ToString(“MM/dd/yyyy HH:mm:ss”);
HTH
Nic
0 votes

That sounds perfect. Thank you for the clarification and reference.

Best regards,
Diwakar

0 votes

Either way:

  1. To make the tabs fill the width, add a JavaScript component from the toolbox. Then in the JavaScript property of the TabControl put this:
var children = this.getChildren();
for (var i=0; i<children.length; i++){
    children[i].getButton().setLayoutProperties({flex:1});
}

It tells each tab to stretch proportionally. You can even have different proportional values, for example flex:2 will stretch twice as flex:1.

2. To center the tabs, out this in the JavaScript field (same JavaScript component, which is an extender):

this.getChildControl("bar").getLayout().setAlignX("center");

It tells the layout engine to center the content.




 

  • Luca answered Jul 19, 2018 - 5:31 pm
0 votes

Do you mean fill the width or center?

  • Luca answered Jul 19, 2018 - 5:17 pm
Showing 7061 - 7080 of 11k results