All Answers

0 votes

The TinyEditor uses an iframe for the text area, which doesn’t allow events to bubble up. If you need a click event from within the iframe of the TinyEditor you would need to modify the extension.

 

Hope this helps,

Lawrence

  • Lawrence (ITG) answered Jan 27, 2025 - 4:41 pm
  • last active Jan 27, 2025 - 4:42 pm
0 votes

Yes, you can run the server on your own server.

For an example program, watch this video: https://www.youtube.com/watch?v=CnAK-tQK0vc

The video shows it running natively in Windows, but you can run it in an android emulator, or on your phone. You just need to check the box to target android when you create the project. Same with iOS.

Note that the template names and default project names have changed since that video was recorded.

Template Names
old -> new
Wisej.NET 3 Hybrid Web Page Application -> Wisej.NET Hybrid Remote Application
Wisej.NET 3 Hybrid Client Application -> Wisej.NET Hybrid Client Application

Project names
old -> new
HybridApp1 -> HybridClient1
WisejHybridWebApplication1 -> WisejHybridRemoteApplication1

  • Julie(ITG) answered Jan 27, 2025 - 3:15 pm
  • last active Jan 27, 2025 - 3:17 pm
0 votes

In order to enable text wrapping in a DataGridView, you can set the WrapMode of the cell style to true. By default the WrapMode will be “NotSet,” which will cause the cells to act as if it were false.

dataGridViewName.DefaultCellStyle.WrapMode = DataGridViewTriState.True;

I would also recommend using auto sizing on your rows depending on how much text you plan on having wrapped.

 

Hope this helps,

Lawrence

0 votes

The community license is free. The server express license is also free.

You can read the restrictions on the community license here: https://docs.wisej.com/license/license-model/community-edition

The trial license can only be used for 30 days before it expires. Yes, you can use the trial license with the server express license.

 

Hope this helps,

Julie

0 votes

Another thing to consider as you build your application is Responsive Design. You’ll need the application to look good on a small phone screen as well as on a big browser screen.

Here’s the Wisej documentation on how Wisej deals with Responsive Design: https://docs.wisej.com/mobile/guides/responsive-design

You might also consider using the FlexLayoutPanel and FlowLayoutPanel.

0 votes

Yes, you should use the Hybrid project in that case.

A regular Wisej project would be able to run in a phone browser, but not as a phone app.

 

 

0 votes

Thank you Frank!  That did it 🙂

0 votes

Hi Rusty,

just replace

ListBox1.Refresh()

with

Application.Update(ListBox1)

Best regards
Frank

0 votes

Instructions if anyone needs it:

1. Open VIsual Studio
2.Click “Extensions”
3.Click “Manage Extensions” 
4.Click on the WIsej.NET Extension – you may have to search for it if there are multiple extensions
5.Click “Uninstall”
 
0 votes

I’had the same error in a new installation from scratch and 3.5.15.2 Designer and i was not able to activate the designer.. To succesfully activate i need to uninstall the 3.5.15.2 release, install the 3.5.12.x release, activate the product and then upgrate the designer to 3.5.15.2. This i a bug.

0 votes

I used the latest build and selected community edition of visual studio – it installed – opening the designer does not ask me for the license – I get a “null reference exception” message =- but then it proceeds as normal and i can use the designer.

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

Showing 401 - 420 of 11k results