All Answers

0 votes

There is no native printer integration in Wisej. See answer to https://wisej.com/support/question/hybrid-open-pdf-file-error#sabai-entity-content-15347

0 votes

There is no native printer integration in Wisej. You can’t send the document directly to the printer. You’ll need to create a pdf, download and print it- which it sounds like you’ve already been doing.

Alternatively, you could call native Android code from your C# Wisej code that accesses your printer directly.

See:

https://docs.wisej.com/hybrid/development/invoke-platform-code

https://www.androidcode.ninja/android-bluetooth-tutorial/

0 votes

Any update if this functionality to preset filter will be added, or can be achieved somehow differently?

0 votes

thanks julie; your mini project also fails to display the camera if I run it from a tablet (10 android tablets) or from another PC; permissions to use the camera have been granted; I really don’t understand; here I put another mini project in vb.

0 votes

Ciao Grabiele,

We have several Wisej.NET integrations done with Office365 outlook and word addins which seems to have the architecture and they all use iframes. The javascript for the addins provides the api necessary to cross the iframe boundary. There is no way for us or anyone else to bypass the browser security. For the 365 addins I mentioned there is no issue in using the integration javascript from Wisej.NET to do just about anything with the hosting office.

If the webpart architecture is similar to the addin, it’s probably the same. As soon as I have some time I will try. If you want to contact me directly with a sample and steps of what to do with sharepoint.com pls do that.

 

  • Luca answered Feb 23, 2024 - 10:07 pm
  • last active Feb 23, 2024 - 10:07 pm
0 votes

Can you provide a link to the specific “CameraSample” Application that you’re referring to? Or a zip file?

For the tablet/pc make sure that the camera permissions are enabled.

I tested with the newest version of Wisej and the newest extension,(3.5.5-preview.4) and it works for me. See attached sample- test it and see if it works for you.

1 vote

Hi Arturo,

are you using the Brotli Extension in your application? We noticed rare cases where this exception can occur based on some interal issue in the Brotli compression code.
Please try running your application with removing Wisej.Ext.Brotli and tell us if the error goes away.

Thanks in advance.

Best regards
Frank

0 votes

Ha Ha  thanks-ish   Luca    I added an Image of my discovery.

It was not intuitive  Hope it helps someone else

this.fullCal.HeaderFormats.DayViewFormat = “MMMM DD, YYYY”;

1 vote

It’s all explained at fullcalendar docs.

  • Luca answered Feb 21, 2024 - 7:32 pm
0 votes

The problem was Javascript debugging, now it’s fine.

1 vote

What kind of error you got? Design time or Runtime? A screen-shot may help a lot.

The project load correctly in Visual Studio.

The included ChilkatDotNet48.dll is 32 bit.
I see a potential problem at runtime and debug because a mix of 32 bit and 64/AnyCPU can not be loaded by a default IIS application pool wich is a 64bit one.
You cannot load 32 bit DLL in a IIS 64 bit application pool
The ChilkatDotnet48.dll is a very particular piece of .NET code because contains native code…
https://chilkatsoft.com/win32_Framework48.asp
Try to change the dll with the 64 bit version or you need to configure IIS application pool to be a 32 bit one.
Please note that IIS (and IIS Express) on a 64bit Windows OS are configured by default with  64 bit application pools so the native DLL must be 64 bit and the .NET dll can be AnyCPU or 64 bit. Loading a 32 bit native DLL or a x86 (32 bit) .NET assembly lead to a load error.

Have a nice day.

2 votes

Please do not upload real data……or license numbers….

1 vote

Hi Francesco,

While this project does not contain many forms as you mentioned, there are still many customizations. The issue the project is displaying is related to one of the third-party dependencies added to the project (“ChilkatDotNet48”). I would suggest removing all unnecessary references from the project.

Additionally, there appear to be many customizations made within the Web.config file related to CrystalReports, AssemblyBindings, custom HttpHandlers, and more.

Your best bet is to start with a fresh working project template and start adding features until you can diagnose what functionality related to the dependency caused the application to break.

In summary, this is not a Wisej.NET issue, but we would be happy to diagnose and treat the issue for you with the purchase of consulting packages.

Best regards,
Levie

  • Levie (ITG) answered Feb 20, 2024 - 6:41 pm
  • last active Feb 20, 2024 - 6:42 pm
0 votes

There are two steps to this:

1.Get the user’s location using Wisej Hybrid. Note that this will only work in a Hybrid application, not a regular Wisej application.
Hybrid documentation on location: https://docs.wisej.com/hybrid/start/api/location
var location = Device.Geolocation..GetLocation()

Note that if this code is not working, you may need to request to the user that they enable location permissions:
Device.Permissions.Request(PermissionType.LocationWhenInUse);
Device Permissions documentation: https://docs.wisej.com/hybrid/start/api/permissions/wisej.hybrid.devicepermissions

2. Display the user’s location using the Google Maps extension.
I believe that the Google Maps extension doesn’t currently have a blue location dot implemented that looks like the one in your picture.
Some options:
– You could use a marker instead

this.googleMap1.AddMarker("Marker1", latitude, longitude)
//where latitude and longitude are doubles

documentation on AddMarker function: https://docs.wisej.com/extensions/extensions/googlemaps/api/wisej.web.ext.googlemaps.googlemap#addmarker-markerid-lat-lng-options-center

– You could run some javascript code, similar to this:
https://developers.google.com/maps/documentation/javascript/examples/map-geolocation
Or this:
https://stackoverflow.com/questions/30440777/show-blue-dots-icon-on-current-location-google-maps
For information on calling JavaScript functions from C#, you can use the Call() and Eval() functions, see here: https://docs.wisej.com/docs/concepts/javascript

  • Julie (ITG) answered Feb 20, 2024 - 6:20 pm
  • last active Feb 20, 2024 - 6:25 pm
0 votes

We use monserrat and many other fonts without issues regularly. To autosize on the server the font must be installed on the server as well. See theme and fonts section in our docs. There is also a way to use a font without installing it.

If is you still see an issue attach a test case and your custom font as a ttf.

  • Luca answered Feb 19, 2024 - 9:02 am
0 votes

CKEditor is not our product. Please refer to their documentation and support.

  • Luca answered Feb 15, 2024 - 2:35 pm
0 votes

Here is a sample:

0 votes

You might find this helpful: https://wisej.com/blog/integration1/

In startup.js, you do this:

var id = this.getId() + "_timeline";
this.Timeline = this.widget = $("#" + id);
this.Timeline.Timeline(window.tlOpts);

But you need to do this instead:
$(this.container).Timeline(window.tlOpts);

Also, something to keep in mind as you work on this: You’ll need to clear the cache every time you change the code in the startup.js file. Otherwise, it will use the old code.

0 votes

If you want to do this yourself:

You could create a custom UserControl based on the ListView with the additional functionality you want: https://docs.wisej.com/examples/examples/usercontrol

You could even create it as an extension: https://docs.wisej.com/extensions/introduction/extension-types

In the meantime, I’ve logged it as an enhancement request, but it’s not a high priority.

0 votes
In reply to: Nested Data repeaters

Nested datarepeaters are not supported.

Showing 1041 - 1060 of 11k results