All Answers

0 votes
In reply to: View RTSP Streaming

Hi,

you can use an HMTLPanel to embed your stream.

See also some older discussion in this forum:

https://wisej.com/support/question/embed-rtsp-video-stream

Best regards
Frank

0 votes

Thanks you!

0 votes

Follow the steps in our troubleshooting section in the documentation. It’s in the getting started page at the top.

Make sure you uninstalled previous builds, install the vsix package, follow the clean up steps.

  • Luca answered Feb 5, 2023 - 3:40 pm
0 votes

You already have one. It’s in your /account page. The limit is 1 per user.

  • Luca answered Feb 5, 2023 - 3:33 pm
0 votes

My old project has the same issue, and I used Visual Studio version 17.5.0 Preview.

1 vote

Does anyone know why OnWidgetEvent(WidgetEventArgs e) reports 0,0 instead of coordinates, works with same event in VsCode?

The repository / source code can be found at: https://github.com/Opzet/WjLeaflet

This works in js

      map.on('click', function(e) {
      	alert(e.latlng);
      } );

but calling the same via WidgetEvent return dynamic is faulty?

 protected override void OnWidgetEvent(WidgetEventArgs e)
        {
            switch (e.Type)
            {
                case "click":  //Mapclick
                case "rightclick":
                    // latlng 
                    OnMapClick(new MapMouseEventArgs(e));
                    break;

LeafletjsMap -> LeafletMap.cs

        /// <summary>
        /// Fired when the user clicks on the map or a marker.
        /// </summary>
        public event MapMouseEventHandler MapClick
        {
            add { base.AddHandler(nameof(MapClick), value); }
            remove { base.RemoveHandler(nameof(MapClick), value); }
        }

Wired up

this.leafletMap1.MapClick` += new LeafletjsMaps.MapMouseEventHandler(this.leafletMap1_MapClick);

Line 60: frmWjLeafletjs.cs

// C# Event -> reports co ordinates 0,0 ?

        private void leafletMap1_MapClick(object sender, MapMouseEventArgs e)
        {
            
            // To Do : MapMouseEventArgs not bubbling up, always shows as Lat:0 , Lon:0 ?
            // Works in VsCode?

            if (e.Marker == null)
                AlertBox.Show("You clicked location: " + e.Location.ToString());
  • David answered Feb 5, 2023 - 1:27 am
  • last active Feb 5, 2023 - 1:29 am
1 vote

Hello,

I’m not really sure I fully understand the question here, but I can tell you the following:

  • All controls in Wisej have a respective “Appearance Key”, the Wisej.Web.Button control’s AppearanceKey in this instance is “button” in the theme.
  • You can set your own custom Appearance, for example, if you would like to have a panel with a specific Color, you can do that without overriding the default one, just make sure that you assign the correct AppearanceKey for it in the code.
  • There are theme mixins, which are files that can override a specific control appearance and are not bound to a specific control; meaning a control appearance would be overridden across ALL the themes.
  • You don’t have to fiddle with the JSON part of the theme, that can be done with the Theme Builder, however, you’ll have to manually create the Mixins using the very same JSON structure
  • You can preview your application in the Theme Builder and the changes would be applied in real-time, thus making it easier for you to customize.

Hope this does answer some parts of your questions, if anything falls short, please do let me know and I’ll be happy to help!

Best,
Alaa

0 votes

Hi Cristian,

This issue was fixed in Wisej.NET 3 (specifically version 3.0.10).

Unfortunately, we no longer support Wisej 2.5.

Best,
Alaa

0 votes

Hi Cristian,

Fortunately, there’s a demo in our DemoBrowser application that showcases what you’re trying to do, you can find the source code at: https://github.com/iceteagroup/wisej-demobrowser/tree/main/Demos/Grids/Wisej.DemoBrowser.PropertyGrid

HTH,
Alaa

 

0 votes
In reply to: HTTP Error 500.21

ManagedPipelineHandler

 

You have the wrong app pool. See our deployment docs.

  • Luca answered Feb 3, 2023 - 5:27 pm
0 votes

Hello Frank,

I tested the on the latest Wisej.Net 3.0.17 version, the time is still being defaulted to 12am instead current user local time. Attached is the sample application I created for testing. Can you please check and let me know how we can ensure the time is set to current local time.

 

Thanks

Sathya

  • Behzad answered Feb 3, 2023 - 12:14 am
0 votes

Wise.NET and its components are developed in the US and sold from there. Therefore, that’s the country of origin.

In case of any questions, feel free to get in touch: sales@wisej.com

Best
Thomas

0 votes

Hi Messere,

Sorry for the long wait, here are the answers

  1. No, unfortunately the new licenses wouldn’t work on old Wisej 2 licenses.
  2. There shouldn’t be any issues, for reference please take a look at our Upgrade Existing Projects guide!
  3. Yes, both Wisej.NET version 2 and 3 can coexist on the same machine.
  4. You can find them on NuGet by searching for Wisej-2-Extensions or you can compile from source from our GitHub repository
    I
    n case you’re referring to older builds, then you can download them from https://wisej.com/previous-builds/

HTH,
Alaa

0 votes
In reply to: Wrong Product Name

Hi Soran,

We have investigated the issue, and I would like to inform you that the issue is infact related to the Region Format on your machine,

We have taken note and in a future release the textbox is going to ignore the machine preference in order to mitigate this issue!

In the meantime, it would make sense to change these settings in order to activate your license, here are the steps:

  1. Search for “Region” on your machine, you’ll find it under Control panel
  2. Again, by accessing that folder, click again on Region
  3. A prompt should appear, click on “Advanced settings…”
  4. Change the Standard Digits to regular Digits in place of the Indo-Arabic numerlas
  5. Click on OK and then restart

I have attached screenshots to help guide you in case you have a different language on your system.

After that, you can activate your license and then switch back everything by doing the same thing and clicking on the Reset button (see Step 4.png)

HTH,
Alaa

0 votes

You can try this help. It worked for me when PrintJobLimit
1. Open Command prompt with Run as….
2. Run command:
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.2\Report Application Server\Server” /v PrintJobLimit /d 9999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\9.0\Report App\Server” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\InprocServer” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\Server” /v PrintJobLimit /d 9999 /f

REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Crystal Decisions\10.2\Report Application Server\InProcServer” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Crystal Decisions\10.2\Report Application Server\Server” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Crystal Decisions\9.0\Report App\InprocServer” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Crystal Decisions\9.0\Report App\Server” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\InprocServer” /v PrintJobLimit /d 99999 /f
REG ADD “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\Server” /v PrintJobLimit /d 9999 /f

1 vote

Hello Wisej Community,

I’ve created a Github repository for a Wisej LeafletJS widget called WjLeaflet. This widget provides advanced control features such as events, properties, and methods.

The repository can be found at: https://github.com/Opzet/WjLeaflet

I would greatly appreciate it if the Wisej community could review the repository and contribute to help implement the full feature set of LeafletJS from Wisej C#.

Thank you for your time and support!

 

  • David answered Feb 2, 2023 - 7:39 am
0 votes

Hi Alex,

In addition to my colleague’s answer, a proper fix is added to the extensions repository.

You can check out the Code from GitHub and compile the Wisej.Web.Ext.TinyEditor project and add it to your projects as an Assembly reference while you wait for the official NuGet release!

HTH,
Alaa

0 votes

In order to change the toolbar, you will need to edit it via css.
In the toolbox, search for “StyleSheet”. Drag and drop the stylesheet on to the TinyEditor in the designer.
Because the stylesheet is an invisible control, you’ll have to look in the component tray (right below the designer) to see it. (See attached picture).
Clicking on the stylesheet will bring up the properties in the Properties window. Click on “Styles” and a code editor will pop up. Here you can type css. (see attached picture).

A quick way to do it is to simply make the overflow visible:


.tinyeditor-header
{
overflow: visible!important;
}

However, then the background of the toolbar won’t show up for the overflowing icons.

A better solution is to increase the height of the toolbar and set the background to repeat. The initial height was 31px, so I just doubled it to 62px.

.tinyeditor-header
{
height: 62px!important;
background-repeat: repeat!important;
}

Additional notes: If you press F12 to open the developer tools in the browser, you can see the names of the css classes that make up the TinyEditor. I used .tinyeditor-header Depending on what other settings you need to change, .tinyeditor .tinyeditor-control .tinyeditor-divider and .tinyeditor-footer may be relevant.
Also, make sure to include !important to make sure that the css you write overrides the default css.

0 votes

So, if I understand correctly, on Docker Swarm it is not possible using its native load balancer, but one must create a load balancer (NGIX or other) in order to configure the correct Session Affinity… is this correct?
It possible to act on Docker Swarm’s load balancer configuration (although I haven’t understood where)?

0 votes

The healthcheck doesn’t work like that. It’s for custom load balancing and requires that the load balancer supports failover. You can leave that out. The other issue is because you didn’t setup session affinity. Any session based system would not work if you switch the server randomly.

  • Luca answered Feb 1, 2023 - 3:58 pm
Showing 1561 - 1580 of 11k results