Hi Vincent,
what you are describing is correct: You can start several instances of an application on a Wisej.NET server. In this case the application is counted as 1.
See the last question in our FAQs here:
https://docs.wisej.com/license/examples/licensing-faq#wisej.net-server
Best
Thomas
Hi Frank,
Your code do not works.
It executes for the frozen filter row but still frozen filter rows goes last row as result of sorting. Frozen filter row should be always the top row. That is why it is “Frozen”.
Private Sub CDataGRid_FILL_SortCompare(sender As Object, e As DataGridViewSortCompareEventArgs) Handles Me.SortCompare
Dim odgridrow As DataGridViewRow = Me.Rows(e.RowIndex1)
If odgridrow.Frozen = True Then
e.SortResult = -1
e.Handled = True
End If
End Sub
Hi Gerhard,
Thanks for the suggestion! This wouldn’t work for me (I think) because I use a DNS record to point to a specific IP which does not support portnumbers. for example Prod.domain.com and QA.domain.com would both have a different IP adress. I also cannot modify the application to just ask which server to connect to at login for example, because im running multiple (same) applications for different clients for QA purposes. The DSN thing solves the seperation and makes it easy but if it comes at the cost of 1 license per instances this would be way to expensive. Perhaps I’ve yet to learn a few new tricks hahah but I hope an application can have infinite instances of the same application without breaking the lisence so long as the connection count doesn’t exceed the limit.
Anyway, thanks for taking the time to suggest it, appreciated! I hope WiseJ will give me a bit more clarity on my question/approach.
Vincent
Hi,
you can add code like this to exclude frozen columns from being sorted:

Best regards
Frank
Thanks for the hints!
I have checked / adapted everything I consider relevant from the working test app to my application:
all without success. Finlly, the reason for the error was simple: the web.config was missing! I copied it from the working app, now it starts!
You can use Call() or Eval() or the JavaScript extender. Or simply use a js file in default.hrml. You can also use Application.LoadPackages(). See api docs.
Use the PixelRatio property of the Application.Browser object. See api docs.
Hi Vincent,
just use different ports. I use this approach to distinguish between a “Live” and a “Test” mode in a single deployment.
Cheers, Gerhard
Hi Frank,
My issue is visible on the screenshot I attached. My issue is that when some column is sorted, my frozen filter row (in yellow) loses its position as the first row and goes last row in the grid’s rows list.
I want my filter row to be the first row in the grid in all possible sorting scenarios.
Hi Tuan,
Currently, the Validation extender doesn’t work with the DataGridView cells, but we are indeed working on an enhancement for it.
Best,
Alaa
As a workaround, in case someone faces the same problem, I made a simple function that centers the form automatically and called it within the Load event handler
private void center()
{
this.Location = new System.Drawing.Point((Application.Browser.Size.Width – this.Width) / 2, (Application.Browser.Size.Height – this.Height) / 2);
}
Hi everyone,
If you happen to have PPJ installed, you’ll need to remove any reference to the Wisej.NET Designer from the GAC.
PPJ registers the designer directly in the GAC, so Visual Studio will load that version first.
Typically, Visual Studio looks out for any assembly in the GAC first, so it will prevent loading the Designer from the VSIX.
You can use GacUtils to remove the references, here’s a simple script below:
gacutil /u “Wisej.Framework.Design”
gacutil /u “Wisej.Framework.Design.2019”
gacutil /u “Wisej.Framework.Design.2022”
Once you remove the old references from the GAC, the Designer will now be loaded from the VSIX.
HTH,
Alaa
Hi,
is your issue that frozen rows are not sorted? If yes, you could handle the row compare event and customize your sorting.
For filtering we provide ColumnFilter extensions that can be used as a base implementation.
Or you could add an editable control to the Column headers.
Currently we do not have plans to add a filter row given the extensive integration with the server data that is implemented in our grid.
Third party grids with very little server integration are a great alternative in that case.
Best regards
Frank
Hi Robert,
Can you check out your Properties/launchSettings.json file? Compare it with the same one in any of the other Wisej.NET Templates and see if there’s anything off.
Also, make sure that both the Default.html and Default.json files exist, and that the Default.json file is configured correctly.
Best,
Alaa
Hi Luis,
Please read the pinned post here Important information regarding the recent update to Visual Studio 2022 17.7.0
It contains a link to new VSIX installer that fixes the issue.
Best,
Alaa
Hi Julie,
I think I found what the problem is. If in the windowFeatures I do not include dimensions ( width=600,height=400) the position settings are not respected. Try removing the “width=xxx, height=yyy” from your test app and you’ll see what I mean.
So, all well, I need to include dimensions, that is better anyway.
Best,
Alex
Hi, have you set the PdfViewer.ViewerType?
I got the same problem with Edge Browser and PdfViewerType.Auto can help.
Can you attach a test case that shows the windowsFeature string not having an effect on the position of the window? It’s working fine for me.
Here’s a simple test case I made where you can change the left and right values of the window position.
I have a question regarding the explanation for concurrent clients. It’s says the browser count is what is limited so does that mean if a computer(user) only has 1 browser(tab) open this counts as 1?
For example:
I have made a little program which emails a list of items that need attention, each item has a link associated with it and when a user clicks it, a new browser window (or tab) opens up doing what is required. Now imagine the list being 30 items and the user opens each link and closes the window after they’ve reviewed the item and clicks on the next link in the mail (opening a new window/tab). The session time-out is 30 minutes. Will this impact this license restriction? (so, if a session has not yet been expired, does this count as a concurrent client even though the browser was closed?)
I feel like this concurrent client limit is a weird restriction to have, or atleast it is not very clear how this is implemented from my point of view. It feels like I cannot create a website using WiseJ for the general public because I could easily hit those limitations if I were to have a good enough website haha. Obviously WiseJ isn’t meant to be for general websites but still, it made me wonder.
Hello,
Without knowing your code or how you generate your reports, we can’t pinpoint exactly what the issue is.
We need a small, runnable test case that showcases or a detailed description to showcase exactly what happens so that we reproduce.
On our end, the PDF Viewer works as expected in both DEV and Production environments.
Best,
Alaa
