Search found 42 matches

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

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

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

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

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

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

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

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

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

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

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...
by JoshK131
Wed Jan 27, 2021 12:25 am
Forum: General discussion and questions about Aware IM
Topic: Expand all rows in a grid
Replies: 2
Views: 2539

Expand all rows in a grid

Hello. In a form displaying a grid widget with expanding rows, (cascading query) and "Select first record" is ticked. This expands the first row when the form is displayed. However, the requirement we have is to expand all the rows when the form is displayed. How can this be problem be solved? To ac...