Search found 40 matches

by tim mcentee
27 May 2025, 13:37
Forum: "How do I do this"
Topic: how do I remove the caret from a drop down?
Replies: 2
Views: 9821

Re: how do I remove the caret from a drop down?

You can apply this to all drop downs

Application - Styles

span.ui-icon.ui-icon-triangle-1-s

margin-top - 2px
by tim mcentee
13 Jan 2025, 09:07
Forum: "How do I do this"
Topic: copy from browser in axes
Replies: 1
Views: 10559

Re: copy from browser in axes

Hi

Can you provide some more detail on what is going wrong. I can't work out what your issue is.

Tim
by tim mcentee
13 Jan 2025, 09:01
Forum: "How do I do this"
Topic: Rendering pages with aXes style 5250
Replies: 1
Views: 6283

Re: Rendering pages with aXes style 5250

Hi

Try creating a second entry with :focus on the end

#terminalContent .ax-terminal-inputField:not(.mdc-text-field__input):focus

You can then manipulate the CSS. Border might be a bit difficult, it seems to default to black 1px solid.

Tim
by tim mcentee
25 Sep 2024, 12:41
Forum: "How do I do this"
Topic: Subfile Header not formatted by autogui
Replies: 2
Views: 10289

Re: Subfile Header not formatted by autogui

Hi Nic

You can create an application style that uses CSS selection rather than the X attribute drop down
Style for HTML Element
HTML Tag: div.ax-terminal-field.x24 span
Style: do your underline
for5250Attributes: leave blank

Tim
by tim mcentee
16 Jan 2024, 09:03
Forum: "How do I do this"
Topic: Date Regex - dashes and slashes
Replies: 0
Views: 11648

Date Regex - dashes and slashes

I am trying to match a date regex for mm/dd/yy or dd/mm/yyyy on the contents of an input field.

My regex is
^(0[0-9]|1[012])(\/)(0[0-9]|[12][0-9]|3[01])(\/)\d{2}$|(19|20)\d{2}$

This work fine for dates

My problem is that the gl format is n-nn-nnnn and this is being recognised as a date.

For some ...
by tim mcentee
11 Jan 2024, 14:32
Forum: "How do I do this"
Topic: axMessageHandler how to move that to a variable?
Replies: 2
Views: 16187

Re: axMessageHandler how to move that to a variable?

Hi Dino

Rather than mucking around with regex to strip the out html tags just use the object you created to find the children.

terminalMessages.children[0].innerHTML
or
terminalMessages.childNodes[0].innerHTML

If the messages are empty then there won't be any children so you would need to do a ...
by tim mcentee
10 Jan 2024, 08:18
Forum: "How do I do this"
Topic: Maximum number of active virtual terminal reached
Replies: 2
Views: 15733

Re: Maximum number of active virtual terminal reached

Hi FrancK

Had a different, but similar, problem with a bank provider in Indonesia. I think they were running out of memory in the server job.

Their solution was to create multiple instances of aXes. This would require you to run the server jobs under different ports. You would identify a group of ...
by tim mcentee
09 Jan 2024, 12:42
Forum: "How do I do this"
Topic: subfile options... including special characters...
Replies: 1
Views: 18136

Re: subfile options... including special characters...

Hi Dino
The following character have special meaning, and should be preceded by a \ (backslash) to represent a literal character:
+*?^$\.[]{}()|/

Within a character set, only \, -, and ] need to be escaped.

So try
(\d+|%|@)

I would start with
(.)
then
(\d+|.)
then
(%)
then
(@)

etc

Tim
by tim mcentee
08 Jan 2024, 14:25
Forum: "How do I do this"
Topic: Hover over subfile row
Replies: 2
Views: 28054

Re: Hover over subfile row

Hi Frederik

Try
div#sfeId div div:hover

This tells it grab a div with an id of sfeId the subfile overlay table, then get the child div then the child divs of that child div.

Tim
by tim mcentee
08 Jan 2024, 09:56
Forum: "How do I do this"
Topic: Translations
Replies: 1
Views: 23235

Re: Translations

Hi Frederik

1) I assume that the original translations from Dutch or French are coming through to the aXes screen correctly. Also that the screen signature is the same. I am also assuming that you are overriding the column heading text, and that looks like a lot of work.

You could put this into ...