Search found 230 matches

by joben
Thu Mar 21, 2024 3:11 pm
Forum: General discussion and questions about Aware IM
Topic: MAX Function on datetime
Replies: 2
Views: 504

Re: MAX Function on datetime

FIND ListwithDates.Entrydate WHERE (ListwithDates.Entrydate<=CURRENT_TIMESTAMP) ORDER BY Entrydate DESC TAKE BEST 1
BO1.DateAttr=ListwithDates.Entrydate
by joben
Thu Mar 21, 2024 3:05 pm
Forum: Problem reports
Topic: Custom list / custom queries, changes to conditional logic
Replies: 2
Views: 965

Custom list / custom queries, changes to conditional logic

We just moved one of our applications from v 8.3 to V 9. We had some custom queries / custom lists with HTML and conditional logic. The conditional logic that broke looked similar to this: # if(data["ExtraInfo"] != undefined) { # <div>{ExtraInfo}</div> # } # # if(data["ExtraInfo"] == undefined) { # ...
by joben
Mon Mar 18, 2024 12:50 pm
Forum: Problem reports
Topic: Query for business object group, can't change "display as" settings
Replies: 1
Views: 376

Re: Query for business object group, can't change "display as" settings

Hmm my bad, seems to have been fixed in build 3124:

Pressing Display As on a query for object groups caused a crash
https://www.awareim.com/dokuwiki/doku.p ... n/8.8/3124
by joben
Fri Mar 15, 2024 1:20 pm
Forum: Problem reports
Topic: Query for business object group, can't change "display as" settings
Replies: 1
Views: 376

Query for business object group, can't change "display as" settings

When trying to edit "Display as" settings of a business object group query, I get this error:

Code: Select all

Internal Error

Reason:
java.lang.NullPointerException
I just want to set how many records there are per page.

Version 8.8 Build 3123.
by joben
Tue Mar 12, 2024 7:54 am
Forum: General discussion and questions about Aware IM
Topic: HTML in a PDF Report
Replies: 20
Views: 1271

Re: HTML in a PDF Report

Same result if you use "pt" or "em" instead of pixels?
by joben
Wed Mar 06, 2024 2:57 pm
Forum: General discussion and questions about Aware IM
Topic: Installing SSL on Window Server - Tomcat
Replies: 2
Views: 635

Re: Installing SSL on Window Server - Tomcat

Connector port should be 443. Here is how we to do it if the certificate is in .pfx format: <Connector port="443" address="1.2.3.4" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" sslProtocol="TLS" keystoreFile="c:/your/folder/acme.pfx" keystoreType="PKCS12" keyst...
by joben
Thu Feb 29, 2024 7:53 am
Forum: General discussion and questions about Aware IM
Topic: ERROR: showing preview window
Replies: 4
Views: 841

Re: ERROR: showing preview window

Did you install the latest version of edge web view?

https://www.awareim.com/forum/viewtopic ... dge#p59436
by joben
Fri Feb 23, 2024 2:28 pm
Forum: General discussion and questions about Aware IM
Topic: Text alignment when using Number as Attribute
Replies: 7
Views: 970

Re: Text alignment when using Number as Attribute

Have you checked the developer console if it has something to do with CSS?
Number input fields have a different classname than plain text.

Can you share the BSV with us?
by joben
Fri Feb 23, 2024 8:34 am
Forum: Problem reports
Topic: V9 prevent overflow menu in form grid panel operations
Replies: 2
Views: 558

Re: V9 prevent overflow menu in form grid panel operations

Thanks for the advice. Here is the conclusion what had to be done. Please take into consideration that these CSS rules are somewhat general and could break stuff in other places unless you make them more specific. V9 panel operations are inside <button> tags instead of <a> tags like before. Thats th...
by joben
Thu Feb 22, 2024 3:17 pm
Forum: Problem reports
Topic: V9 prevent overflow menu in form grid panel operations
Replies: 2
Views: 558

V9 prevent overflow menu in form grid panel operations

I have used some custom CSS to make the 3 buttons more mobile friendly (bigger), so that they use 33.3% of the width each in a mobile form: v8.png This works fine in AwareIM V8, but in V9 the system forces an overflow menu: overflow.png I have tried to decrease the width by a lot, but it doesn't hel...
by joben
Thu Feb 22, 2024 7:43 am
Forum: Problem reports
Topic: missing fontawesome icons in V9
Replies: 4
Views: 679

Re: missing fontawesome icons in V9

Thanks PointsWell! This solves the issue. I am updating my documentation to make sure to fix this file after each upgrade. My experience is that all icons listed on Fontawesome as "version 5.x" and "free" has worked perfectly in AwareIM since I started using it. So I am very pleased that we can keep...
by joben
Wed Feb 21, 2024 10:03 pm
Forum: Problem reports
Topic: missing fontawesome icons in V9
Replies: 4
Views: 679

Re: missing fontawesome icons in V9

Some icons have a ”far” class in Font Awesome 5.x.
fa fa-circle = circle with a fill
far fa-circle = circle that does not have fill

R means ”regular”.

Example: https://fontawesome.com/v5/search?q=circle&o=r&m=free

https://fontawesome.com/v5/icons/circle ... &s=regular
by joben
Wed Feb 21, 2024 1:28 pm
Forum: Problem reports
Topic: missing fontawesome icons in V9
Replies: 4
Views: 679

missing fontawesome icons in V9

These icons don't work in V9 Build 3238: far fa-clock far fa-circle far fa-user I am wondering if all of the regular icons are broken? All i can see is a rectangle symbol. They work in older AwareIM that uses the same bundled version of Font Awesome free (5.6.3). Anyone else experiencing this problem?
by joben
Tue Feb 20, 2024 7:34 am
Forum: General discussion and questions about Aware IM
Topic: V9 Theme Upgrade Advice
Replies: 2
Views: 725

Re: V9 Theme Upgrade Advice

I think I have tried all the themes, and there is not one that is identical to the old bootstrap theme. The closest (in my opinion) is called "CLASSIC SILVER". All themes nowadays seem to use high contrast, so no greyish background color on forms, so you need to fix it with CSS if you don't want it ...
by joben
Wed Feb 14, 2024 1:08 pm
Forum: General discussion and questions about Aware IM
Topic: Protected BO during process + editing
Replies: 7
Views: 1001

Re: Protected BO during process + editing

Shouldn't you be getting another error message like "object was changed by another user" rather than a read protection error?
Just find it a bit strange...

Perhaps add this line to the end of the process as a workaround?

Code: Select all

VIEW BO
OR

Code: Select all

VIEW BO USING FormName
It should force reload the form.