All Answers

0 votes

So do i just use the trial version installer ? That link only gets me the license key

0 votes

In order to get the community edition license, you can click on “get it now” here. From there you can simply checkout. To see all of your licenses, click on “Support” in the upper right hand corner and then choose “Accounts” from the dropdown menu.

Also review the conditions here to make sure that you qualify for the Wisej Community License.

Hope this helps,

Julie

0 votes
In reply to: Bootstrap Dark Theme

Hi Brayden,

you can find the themes here:

https://github.com/iceteagroup/wisej-themes

Best regards
Frank

1 vote

Hi Nhan,

thanks for reaching out on this and clarifying things.

Session Management

If you store the values in global (static?) variables you will risk that another session will overwrite the value.
Best way is to always retrieve these values via Application.Session…
If you need to use the value multiple times in a function store it locally there.

Report

If you want to have specific support to wrap up a report designer, please contact us at salesATwisej.com

QR code

Commercial products are for example IronBarcode or from Aspose.

Best regards
Frank

0 votes

Hi Rusty,

there are some limited options. I have logged an enhancement request to add them but there is no specific date for it yet.

Best regards
Frank

0 votes

Hi Frank
I have rechecked the disadvantages based on your analysis, here are some additional ideas:
1. Regarding performance: I have reviewed, it is true that when calling the form, I query some views in SQL, which leads to slow calculation, causing the form to load slowly, this is likely due to the server responding to sql slowly, not Wisej’s fault
2. Regarding session management. I give a specific situation like this:
– At the login form, after successfully checking the password, we save the information as follows:
Application.Session(“user_name”) = If(IsDBNull(reader(“name”)), String.Empty, reader(“name”).ToString())
Application.Session(“ma_user”) = If(IsDBNull(reader(“ma_user”)), String.Empty, reader(“ma_user”).ToString())

– Then, when initializing any form of the application, we call this procedure at the sub Form load as follows:
Uten_user = If(Application.Session(“user_name”) IsNot Nothing, Application.Session(“user_name”).ToString(), String.Empty)
Mauser = If(Application.Session(“ma_user”) IsNot Nothing AndAlso IsNumeric(Application.Session(“ma_user”)), Convert.ToInt32(Application.Session(“ma_user”)), 0)

The variables Uten_user and Umauser are 2 global variables declared when starting the form.

And the returned result is sometimes from another user, it only happens occasionally so it is difficult to catch the error. I wonder if I made any mistakes in the command?

3. Regarding the issue of creating a report:
I understand that pdfview is just the display part, but I don’t know how to structure the report such as column groups, calculate rows and columns like Dxreport or Activereport? Please help.

4. QR code: Can you suggest which third party to buy that integrates best into wisej?

Thank you very much, wish you health and success
Gửi ý kiến phản hồi
Bảng điều khiển bên
Các bản dịch đã thực hiện
Đã lưu

0 votes

The data source has nothing to do with the colors so the plain DataTable vs the System.Collections.Generic.List<SomeEntityObject_FromEntityFramework> shouldn’t matter.

The color from the theme would never show in the DataGridViewCellStyle since there was never a style attached to a cell, row, or column unless you set it by code.

Can you try to produce a test case, or if not at least provide the code that sets the color of the row and the text of your theme file? We can’t fix it unless we can reproduce it.

 

Julie

0 votes

Two alternatives to downloading the files one by one:

  1. Download the entire wisej-extensions repository. Go to this link: https://github.com/iceteagroup/wisej-extensions/tree/3.5 and click on the drop down menu by the green “code” button. Choose “Download Zip”. See screenshot I attached. This will download all the extensions. Unzip the file, then y0u can open the Wisej.Web.Ext.PrintPreview folder to get all the relevant files.
  2. Install the nuget package of the extension in your project. This has been asked and answered before, Alaa explained it well in this forum post: https://wisej.com/support/question/how-to-downloadinstall-extension
0 votes

Hi Francesco,

did you include the Wisej.NET PrintPreview extension?

You can get it from nuget or here

https://github.com/iceteagroup/wisej-extensions/tree/3.5/Wisej.Web.Ext.PrintPreview

Best regards
Frank

0 votes
In reply to: Fullscreen functions

I’m using Wisej-3.5.12.  Didn’t know there was .14…

Thanks for your kind help!

0 votes

I tested with your test case and was unable to reproduce on my machine.

Make sure that you have the latest version of the Wisej VSIX installed, you can find it here: https://wisej.com/builds/

Also make sure that the VSIX version matches the nuget package version. For example, using 3.5.14 for the Nuget package and the VSIX.

You can slso try restarting Visual Studio, and doing a clean and rebuild of your project.

Hope this helps,

Julie

 

 

0 votes
In reply to: Fullscreen functions

Wisej-3.5.12

!! Yours works, the only difference is I was using .NET 6 and you used .NET 8!!

Thanks Julie 🙂

0 votes
In reply to: Fullscreen functions

What version of Wisej are you using and what browser? I tested and it works fine in 3.5.14 with Chrome, Firefox and Edge.

I’ve attached a sample that uses C#.

-Julie

0 votes

Hi Tim,

we have added httpOnly in our Wisej.NET release 3.5.14.

Best regards
Frank

2 votes

Dear Nhan,

thanks for sharing your feedback on Wise.NET.

While we are very happy to hear about your Pros, please let me address your Cons here:

  • Slow Performance

Wisej.NET starts up and runs faster than any other framework we have seen in production. We have projects with millions of records that start in milliseconds and run extremely fast on the client with hundreds of controls and on the server with lots of data. Usually slowness in an application is caused by the application architecture.

  • Session Management

Are you using any static constructs? We did not have a single report yet where session management would fail. If you can reproduce it in an isolated test case we are happy to investigate.

  • Report Creation

All major report components can be integrated with Wisej.NET. Some of the web viewers are a bit limited in terms of functionality but that it’s up to their vendors. Typically we perform the report generation on the server and provide the results for a PDFViewer on the client. There are currently no plans to change this.

  • Licensing Costs

There might be a misunderstanding here: The limit is not 100 concurrent users, it’s 100 concurrent requests. Wisej.NET requests are very small and very fast due to the micro architecture of the differential packages. We also provide an entirely free server version.

  • QR Code

Our barcode extension is just a wrapper to free 3rd party software. If there is a need for higher quality there a lot of options available at the market that are easy to integrate but might require additional costs.

Best regards
Frank

0 votes

Hi Joe,

To help you further with your issue, we would require a small runnable sample!

Please attach it here so we can look at it.

Best Regards,
Alaa

0 votes

Hi Tim,

JFYI we have updated our documentation covering HttpOnly cookies

https://docs.wisej.com/docs/concepts/security#httponly-cookies

Best regards
Frank

0 votes

Frank, thanks for the clarification. We have switched to HttpCookie to fully meet the requirement of security.

Happy New Year!

Regards

Tim

0 votes

Hi Tim,

this is not possible with the cookies managed through Wisej.NET because those are set using Javascript.
HttpOnly cookies can only be set/read using an http request/response.

They could be managed using ASP.NET cookies directly though. If you want us to evaluate this approach further please contact our Professional Services at SalesATwisej.com.

Best regards
Frank

0 votes

Hi Rene,

Please check-out the sample attached here.

Look at “test.aspx” page, to get the idea about calling Wisej WebMethod from JavaScript.

Also, look at Window1.cs, to see how to define a WebMethod.

For more information about this, please check out this old forum post at: https://wisej.com/support/question/how-to-call-c-function-from-pagesource-javascript

Best Regards and Happy Holidays!

Alaa

  • Alaa (ITG) answered Dec 24, 2024 - 10:37 pm
  • last active Dec 26, 2024 - 12:30 pm
Showing 121 - 140 of 11k results