Search found 46 matches

by JoshK131
Fri Sep 16, 2022 1:39 am
Forum: Problem reports
Topic: Handling small decimal numbers
Replies: 6
Views: 19426

Handling small decimal numbers

Hello, I am trying to accurately store very small decimal numbers but the numbers are automatically changed to "#.#" format. i.e. 0.000000123 becomes 1.23 Decimal needs at least 6 0's The database stores the modified value (1.23) Below is a gif of it happening. https://puu.sh/JlwVy/2d8d01d8cd.gif To...
by JoshK131
Thu Mar 10, 2022 2:37 am
Forum: Problem reports
Topic: Import csv with blank cells
Replies: 1
Views: 2147

Import csv with blank cells

Hello, I am trying to import a csv using an import template from the front end side. Below is a sample of a csv Contact ID, Contact Name, Detail 1, Detail 2, Detail 3 11111, John Smith,,, 22222, Mohamad Lee,"","","" 33333, Peter Parker, "",, Of the 3 rows above, only row 1 will be imported. It seems...
by JoshK131
Tue Feb 15, 2022 10:45 pm
Forum: Problem reports
Topic: Logout command does not use URL parameters
Replies: 1
Views: 3468

Logout command does not use URL parameters

Hello, I have configured the logout command to use a field from System settings. https://puu.sh/IJpo5/2580ce39f2.png And configured it to have the following url: https://www.awareim.com/forum/search.php?keywords=hello+world https://puu.sh/IJpsH/a832eb4f45.png However, when pressing the logout button...
by JoshK131
Mon Jan 17, 2022 12:16 am
Forum: General discussion and questions about Aware IM
Topic: Receiving header information from exposed service
Replies: 5
Views: 2833

Receiving header information from exposed service

Hello,

I have set up exposed service in Aware Im with a Process that takes some Object as an input, from the Body of the external API call.
It is configured to use REST services.

Is there a way to get and store the header information that is sent as well?
by JoshK131
Mon Nov 08, 2021 4:27 am
Forum: General discussion and questions about Aware IM
Topic: Content Panel Auto refresh not triggering
Replies: 1
Views: 3900

Content Panel Auto refresh not triggering

This is an implementation of advanced search function in the landing page of a webapp. I have 2 Content Panels in a Tab in a Visual perspective. Panel 1 uses the Create command to create and eventually edit a BO. The form acts as a search filter and the on save process of the form, finds some record...
by JoshK131
Thu Nov 04, 2021 4:04 am
Forum: General discussion and questions about Aware IM
Topic: Hide Content panels with empty queries
Replies: 2
Views: 1582

Re: Hide Content panels with empty queries

Brilliant,

Nice solution, no need for javascript.

Thank you very much
by JoshK131
Tue Nov 02, 2021 11:34 pm
Forum: General discussion and questions about Aware IM
Topic: Hide Content panels with empty queries
Replies: 2
Views: 1582

Hide Content panels with empty queries

Hello, I have a visual perspective set up with multiple content panels displaying queries. To clear clutter, I would like to completely hide the queries which do not display any records. I've been trying out render scripts on the content panels but it is not working. The error I am getting is: Excep...
by JoshK131
Fri Oct 29, 2021 10:12 am
Forum: General discussion and questions about Aware IM
Topic: Email Error: Could not convert socket to TLS
Replies: 5
Views: 5662

Re: Email Error: Could not convert socket to TLS

Just tried your solution Karelh and the email sending is working now.

Thanks for your help.

I will also second the request to have this added in the next AIM release.
by JoshK131
Wed Oct 27, 2021 10:45 pm
Forum: General discussion and questions about Aware IM
Topic: Attachments in Unsent Email BO
Replies: 0
Views: 5257

Attachments in Unsent Email BO

Hello,

I have configured The aware IM Unsent Email Object to monitor unsent emails.

How can I configure the object to be able to store the attachments in the email as well?
by JoshK131
Wed Oct 27, 2021 10:42 pm
Forum: General discussion and questions about Aware IM
Topic: Email Error: Could not convert socket to TLS
Replies: 5
Views: 5662

Re: Email Error: Could not convert socket to TLS

Getting the same problem here for 3 different customers and the problem all occurred at the same time around 4 to 6 weeks ago. I've set up an unsent Email BO to monitor it from the app and set up a process to resend the email manually. Resending can also fail multiple times. I've noticed this only h...
by JoshK131
Wed Mar 17, 2021 1:48 am
Forum: General discussion and questions about Aware IM
Topic: Unable to start Tomcat
Replies: 1
Views: 2017

Unable to start Tomcat

Hello, I get this error when starting Aware IM Control panel. https://puu.sh/HpPk5/24e877af14.png Here is the startup log associated with it. Mar 17, 2021 2:44:17 PM org.apache.tomcat.util.digester.Digester fatalError SEVERE: Parse Fatal Error at line 1 column 1: Premature end of file. org.xml.sax.S...
by JoshK131
Fri Feb 26, 2021 2:26 am
Forum: General discussion and questions about Aware IM
Topic: Save form on Enter
Replies: 4
Views: 2703

Re: Save form on Enter

Amazing! Thank you very much
by JoshK131
Thu Feb 25, 2021 3:49 am
Forum: General discussion and questions about Aware IM
Topic: Save form on Enter
Replies: 4
Views: 2703

Save form on Enter

Hello, In a form that gets displayed in a new tab the default save button is set and with a process that runs after save, and "close form on save" is not selected. When the user presses [ENTER] the form should save so the process can run. Using javascript seemed like a possible way to do it so the b...
by JoshK131
Wed Jan 27, 2021 11:30 pm
Forum: General discussion and questions about Aware IM
Topic: Expand all rows in a grid
Replies: 2
Views: 2558

Re: Expand all rows in a grid

Thank you very much Jaymer. For other users, here is the script that expands all rows, based on Jaymers Script. var grid = $("#" + parser.m_widgetInfo.wrapperId).find(".k-grid").data("kendoGrid"); grid.bind("dataBound", expand); function expand(e) { var row = $('#' + grid.element.attr('id') + ' tr[c...