Hi Paul
Thanks for inform the issue related to spanish localization.
The development team has reported about with this problem
Regards
Hi Luca,
I tried your suggestion in the Desktop_test_1.zip test application I attached, but it still doesn’t work for me.
Can you attach a working version?
My Wisej version is 2.5.24.
Tankhs
Thanks Frank,
For your great work. Could you please review a problem with the localization in Spanish? Component alignment is out of square.
Set the MinimumWidth and it works.
There is a regression introduced because of trying to prevent assigning both Application.Desktop and Application.MainPage. Both cannot work when the MainPage also has a desktop and the window ended up showing in the the other desktop – there can be only one active desktop.
In any case, your code should work correctly (after removing the Application.Deskop assignment) after we fix the current regression in this upcoming release build. If you need a workaround, do this in your code
Private Sub Page1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Dim f As New MyForm f.Show() Application.Desktop = Me.Desktop11 End Sub
Hi Page,
There’s a few things that you can try.
Fitst of all, you can disable websocket by setting enableWebSocket: false in Default.json, and with that you can check the Application.User and Application.UserIdentity.
Also, check if your IIS setting in case they were reset, you need to disable all the other authentication methods EXCEPT for Windows Authentication.
Let me know if that works,
Best,
Alaa
Hi Page,
We are currently investigating the issue and we will report back as soon as possible.
Best,
Alaa
Hi Andrew,
It’s probably better if you create an alternative appearance in the theme if you want to implement a “dark theme”.
It is considerably faster than setting your own colors by code, all you have to do is set the AppearanceKey of the component, and it gives you much greater flexibility, especially if you want to tweak your settings in the future.
HTH,
Alaa
Hi Andrew
To achieve more clearly understand your issue, plase could you attach a little runnig sample app?
Thanks
Hi,
it seems you have changed the code with Accordion. Right now in new version 2.5.25, SelectedOnTop property throws exception. Please check again.
Thanks for your help,
Page
OK so one thing that works. Recreate all the ListViewItems, setting the .BackColor, and setting the .BackColor() for all of the ListViewItem.ListViewSubItem objects. The best way might be with a global form boolean, nightModeOn
public void CreateListViewItemFromIssue(ref ListViewItem li, ref issue iss)
{
//normal creation code here
//color for nightmode
foreach (ListViewItem.ListViewSubItem si in li.SubItems)
{
if (nightMode) { si.BackColor = Color.FromArgb(26, 26, 26); }
}
}
Thanks Alaa for the answere.
But that’s not wath i want. I try to explain better my need.
I want to open a page on browse from sub main.
Public Sub Main()
Application.Desktop = New Desktop1
Dim f As New Page1
f.Show()
End Sub
Inside page I put some controls and one desktop.
Inside desktop I want to open my forms.
See image and sample attached.
Hi Angelo,
What you need to do is to create a component that’s based on the Desktop component AND set Application.Desktop to it in the Main method of the Program.vb file.
And from there you can also show a particular Form.
I modified your sample so that it meets your needs, otherwise, you can always create a new desktop application directly from a template.
HTH,
Alaa
Hi Andrew,
Can you perhaps attach a sample that can showcase this issue ?
If not, can you give us some more details about how many components are there on the form so we can try to reproduce it.
Best,
Alaa
Hi Paul,
I have update the extension in GitHub
https://github.com/iceteagroup/wisej-extensions
Now you can attach to the RowsFiltered event and get the number of filtered rows in the EventArgs.
A new nuget package will be created with the next Wisej release.
Best regards
Frank
Hi Vincent,
There is a ping between the client and the server continuously when a Wisej application is running. The moment the ping stops, the Wisej application begins the countdown to time out the session. If you want to create an “infinite” session that gets cleared when the browser is closed you can set the sessionTimeout to 60 seconds or so and handle the Application.SessionTimeout event. Set e.Handled = true. This will prevent any timeout window from appearing and clear the session after the browser has been closed for a bit.
HTH,
Levie
Hi Vincent,
I´m glad to hear your feedback about Wisej.
We are very eager to learn more about your projects and what you achieved so far.
Please contact us at SalesATWisej.com and we can check how to follow up on a case study.
Best regards
Frank
The application is a incident report system which allows employees to report incidents, near incidents and other related events. As these reports can be difficult to compose it was requested there’d be no timout as users might have to search and add attachments related to the notification. I figured there’d be a kindoff ping going on between the browser and the WiseJ framework.
I’ve changed the timeout to 30 minutes which seems to be working just fine, I’ve had no complaints so far 🙂
This is our second WiseJ project where multiple people use it on a daily basis and so far they’re happy with the results. I’m considering publishing details of the project so you can showcase them. Both look great and both showcase the potential WiseJ has!
I have two more projects in the making, perhaps I’ll supply those too. One is technically challenging so if that one works out, I’m going to real happy and surely have it submitted as a showcase too.
Anyway, thanks for the support as always!
Vincent
Hi Paul,
thanks for your interest in the Column Filter extension.
It will be updated within the next few days and I will check to see if we can add an event after filter plus providing the number of filtered row.
Best regards
Frank
Hi Andrew,
maybe you have a CancelButton set for the form? Or another control that also uses an ESC accelerator?
Best regards
Frank
