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
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
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
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
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.
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.
Thank you Frank! That did it 🙂
Hi Rusty,
just replace
ListBox1.Refresh()
with
Application.Update(ListBox1)
Best regards
Frank
Instructions if anyone needs it:
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.
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.
So do i just use the trial version installer ? That link only gets me the license key
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
Hi Brayden,
you can find the themes here:
https://github.com/iceteagroup/wisej-themes
Best regards
Frank
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
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
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
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
Two alternatives to downloading the files one by one:
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
