All Answers

0 votes

Hi Frank,

I am programming in VB.

Code for DataRepeater.ItemUpdate and result: Only first 10 records (repeater items) are OK. Next records NOK.

 

See attachments.

 

BR,

Peter

0 votes

Hi Peter,

you can use the ItemUpdate event to handle any formatting.
Please find a very simple test case attached.

Best regards
Frank

1 vote

Hi,

you can control the behavior when sorting by setting the SortSelectionMode property.
Default is UpdatePosition so it selects the row that was selected before the sorting.
KeepPosition selects the row with the same index that was selected before.

Best regards
Frank

0 votes

Hi Mario,

the enhancement request is in our product backlog so currently I cannot tell you if and when it will be added.
You can reach out to salesATwisej.com if you’re interested in an individual quote to add it faster.

Best regards
Frank

0 votes

Hi Alaa,

I think we can use the ThreadContext in Log4Net. I just read this: .net – What is the difference between log4net.ThreadContext and log4net.LogicalThreadContext? – Stack Overflow.

I’d welcome your thoughts on this though.

Neil.

0 votes

Hi Alaa – once we’ve logged the user on, we call the Logging.Setup with the user’s email address. This is before any logging.info or logging.error call. The issue we have is that user’s logs are getting mixed up, even though a log file is always generated per user.

0 votes

Hi there,

Thanks for your quick reply.

None of the applications are writing to the server’s file system.
I will be contacting CrowdStrike support with my findings.

Best regards,
Tom

0 votes

Hi Neil,

Any chance you could tell me how this logger class is setup in your application?

Best Regards,
Alaa

0 votes

Good morning, Tom-Lukas!

Wisej.NET doesn’t use other paths, perhaps your application is writing to the server’s file system as well?

You can try to exclude those paths as well and see if that makes any difference?

Best Regards,
Alaa

0 votes

Thank you for your help, Frank.

Could you please let me know how to submit that improvement request? I am very interested in that functionality. I look forward to your comments.

Thaks for you time.

 

Mario Acuña

  • m o answered Nov 16, 2024 - 7:51 pm
0 votes

Hi Adrian,

Thank you for reporting this. We can reproduce it and will check in a fix for the next build.

Best regards,
Levie

0 votes

Hi mgmst,
Check out this example of real-time communication between multiple sessions for chat functionality. No need for SignalR.

https://github.com/iceteagroup/wisej-examples/tree/3.5/SimpleChat

Best,
Levie

0 votes

Thank you very much, I can see the effect you described, but the InputType of my Textbox is Date. I hope to trigger it after modifying the four digits of the year,  rather than triggering it every time I enter a year digit.

  • jingzhou liu answered Nov 6, 2024 - 1:42 pm
  • last active Nov 6, 2024 - 1:43 pm
0 votes

Sure, here it is.

I was not entirely clear in my last answer. You’d have to use the TextChanged event in combination with a keyboard event handler to achieve what you want.
See sample and compare the 2 text boxes.

Best regards
Frank

0 votes

Hi Frank,

If you could give me a small example, it would be very useful to me. Thank you!

0 votes

Hi Jingzhou

if you want to have it fired every time, you need to attach to a keyboard event of the textbox as well.

Best regards
Frank

  • Frank (ITG) answered Nov 6, 2024 - 12:02 pm
  • last active Nov 6, 2024 - 12:14 pm
0 votes

Not yet But I need more basic general perfectly working chrono model oh which I will have total control, than just some chat interface.

  • mgmst answered Nov 5, 2024 - 5:41 pm
0 votes
0 votes

Hi Chad,

For the cell there is no hovered state since it’s handled in javascript and the cells are not widgets, they are plain html.
You can use simple css but SVG images by default don’t support recoloring.

The easiest way is to set the cell content to HTML and use standard css, etc.

Best regards
Frank

0 votes

Now to your question:

The content of the listview and the datagridview are not standard widgets since they are fully virtual and are rendered dynamically as html while scrolling. Each cell and row has a renderer javascript class which supports only certain states, styles and properties.

When the ListView is in item mode, you can set the states on the item or the item/icon like this

  1. Remove the listview/properties/iconColor (this is the default color and cannot be overridden by the theme)
  2. Set the item/icon/default/properties/textColor and item/icon/hovered/properties/textColor
"icon": {
                            "states": {
                                "default": {
                                    "properties": {
                                        "scale": true,
                                        "marginRight": 5,
                                        "textColor": "iconDark"
                                    },
                                    "styles": {
                                    }
                                },
                                "hovered": {
                                    "styles": {
                                    },
                                    "properties": {
                                        "textColor": "red"
                                    }
                                }
                            }
                        }

 

When the listview is in details mode it’s a different thing since the inner part are not widgets.

Best regards
Frank

Showing 541 - 560 of 11k results