Search found 221 matches

by joben
Tue Mar 26, 2024 7:16 am
Forum: General discussion and questions about Aware IM
Topic: *SOLVED* PKIX path building failed.
Replies: 7
Views: 97

Re: *SOLVED* PKIX path building failed.

Glad to hear!

I suggest opening a new thread regarding the API question so that others can find it easier.
by joben
Mon Mar 25, 2024 1:32 pm
Forum: General discussion and questions about Aware IM
Topic: *SOLVED* PKIX path building failed.
Replies: 7
Views: 97

Re: PKIX path building failed.

Bingo. The intermediate certificate is often included as a separate file when you get it from your provider. Otherwise you can just download it from their website. If you are lucky you can just open your certificate files in notepad and see text like this: -----BEGIN CERTIFICATE----- yadayadayada --...
by joben
Mon Mar 25, 2024 1:06 pm
Forum: General discussion and questions about Aware IM
Topic: *SOLVED* PKIX path building failed.
Replies: 7
Views: 97

Re: PKIX path building failed.

Could you please confirm that the certificate chain is valid? This tool should do the trick: (this assumes that your application is accessible from the internet) https://decoder.link/sslchecker Oftentimes when I have seen SSL certificate errors where only certain clients had problems accessing it, i...
by joben
Mon Mar 25, 2024 9:59 am
Forum: General discussion and questions about Aware IM
Topic: Showing icon in a cell of a query
Replies: 2
Views: 36

Re: Showing icon in a cell of a query

When working with the query, you should see this option in the right panel:
Display as: Standard Grid

Click the "..." button.

in the "Columns to Display" section, make sure that the value option is set to "Icon only". Default is "Value only".
by joben
Fri Mar 22, 2024 1:37 pm
Forum: General discussion and questions about Aware IM
Topic: Calendar start time not same as database start time
Replies: 3
Views: 60

Re: Calendar start time not same as database start time

The RegularUser BO has an attribute called TimeZone. I have never played around with it, but this is what I would try: Make sure TimeZone is visible in the user form so that you can change it. Then compare the calendar between a user who has it set as default, and another user with Central Daylight ...
by joben
Fri Mar 22, 2024 7:56 am
Forum: Problem reports
Topic: Custom list / custom queries, changes to conditional logic
Replies: 2
Views: 66

Re: Custom list / custom queries, changes to conditional logic

Thanks. I am sure I have used your examples when constructing my first custom queries.
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: 44

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: 66

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: 53

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: 53

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: 11
Views: 247

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: 156

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: 317

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: 398

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: 232

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...