Search found 77 matches

by yahya
Mon Nov 02, 2020 8:27 am
Forum: Problem reports
Topic: Custom HTML Form - No form sections defined
Replies: 0
Views: 7865

Custom HTML Form - No form sections defined

Am getting this occurring a lot, when trying to use the custom html form - AwareIM is use to looking for a form with a section, and when one has a custom html form, then their is no sections.
by yahya
Sun Nov 01, 2020 10:54 am
Forum: Problem reports
Topic: Unsupported function CHARS_FROM_LEFT
Replies: 2
Views: 7031

Re: Unsupported function CHARS_FROM_LEFT

This is the Process:

BusinessObject.AttributeExtract=CHARS_FROM_LEFT(BusinessObject.Attribute,7,4)
by yahya
Sun Nov 01, 2020 10:52 am
Forum: Problem reports
Topic: Unsupported function CHARS_FROM_LEFT
Replies: 2
Views: 7031

Unsupported function CHARS_FROM_LEFT

Received the following error:
com.bas.shared.ruleparser.ParseException Unsupported function CHARS_FROM_LEFT
by yahya
Thu Oct 29, 2020 8:50 pm
Forum: Problem reports
Topic: Button element on form
Replies: 4
Views: 9651

Re: Button element on form

I did not realise that there was a add button link on a blank html row, I was utilising the button link from the dropdown.

Appreciate your feedback
by yahya
Thu Oct 29, 2020 7:11 am
Forum: Problem reports
Topic: Button element on form
Replies: 4
Views: 9651

Re: Button element on form

Here is an example of two button elements on seperate rows, normally one would have buttons on the same row, so if I where to drag the button B to the same row as button A, then button A will be replaced by button B, leaving no option to place more than one button on a single row. Screenshot 2020-10...
by yahya
Wed Oct 28, 2020 12:37 pm
Forum: Problem reports
Topic: Button element on form
Replies: 4
Views: 9651

Button element on form

Option to move to button element onto same row as another button element is not available.
by yahya
Tue Oct 27, 2020 10:06 am
Forum: Problem reports
Topic: Custom HTML Form
Replies: 0
Views: 7586

Custom HTML Form

Form New@n not found in object BusinessObject
Error message received when trying to create a new object that is suppose to use a Custom HTML Form when using a html button on a form.
by yahya
Sun Oct 25, 2020 11:08 am
Forum: General discussion and questions about Aware IM
Topic: Using Pinegrow HTML with Aware
Replies: 5
Views: 14709

Re: Using Pinegrow HTML with Aware

aware_support wrote: Sun Oct 14, 2018 10:26 pm You can just modify the startup.html to include the new version of Bootstrap. But it has never been tested.
Is that all that is required when upgrading Bootstrap?
by yahya
Wed Oct 21, 2020 11:35 am
Forum: Problem reports
Topic: Form Preview not working
Replies: 6
Views: 16206

Re: Form Preview not working

If you set to this then the configurator tries to connect to https://localhost:80 but with SSL you have a certificate that is registered to a domain name. So in essence how does localhost become an option to use with SSL?
by yahya
Wed Oct 21, 2020 11:23 am
Forum: General discussion and questions about Aware IM
Topic: How to validate a field with the luhnCheck
Replies: 5
Views: 9058

Re: How to validate a field with the luhnCheck

How do a reference the check to the javascript?
by yahya
Tue Oct 20, 2020 10:09 pm
Forum: General discussion and questions about Aware IM
Topic: How to validate a field with the luhnCheck
Replies: 5
Views: 9058

How to validate a field with the luhnCheck

How would a person go about implenting a validation on a field using the luhnCheck? function luhnCheck(number) { number = String(number); let sum = parseInt(number.charAt(number.length - 1)); for (let i = 0; i < number.length - 1; i++) { let value = parseInt(number.charAt(i)); if (i % 2 === 0) { val...
by yahya
Tue Oct 20, 2020 9:12 am
Forum: Problem reports
Topic: Height of Form incorrect when using columns
Replies: 0
Views: 7696

Height of Form incorrect when using columns

Noticed a small bug where when using one column in a form, the height is automatically adjusted to the content, as soon as you put more than one column into the form then the height of the column is not display correctly, see my attachments
by yahya
Mon Oct 05, 2020 3:00 pm
Forum: General discussion and questions about Aware IM
Topic: Installing after building an executable
Replies: 5
Views: 8814

Re: Installing after building an executable

If I connect to mySql with the workbench using the same password everything connects without a problem. In troubleshooting, I setup an EC2 instance on Amazon with a mySQL db instance aswell within the same security group and ran the executable and no errors everything worked. Yet on this hosted serv...
by yahya
Thu Oct 01, 2020 7:03 am
Forum: General discussion and questions about Aware IM
Topic: Installing after building an executable
Replies: 5
Views: 8814

Installing after building an executable

Running into a problem where I have installed an application from the executable that was built in AwareIM and for some reason is not reading the password. Message in the startup log: Message returned from the database Access denied for user 'root'@'localhost' (using password: NO) Server startup err...
by yahya
Fri Sep 11, 2020 3:27 pm
Forum: General discussion and questions about Aware IM
Topic: Diff. between FIND 'QueryName' and DISPLAY 'queryName'
Replies: 7
Views: 10395

Re: Diff. between FIND 'QueryName' and DISPLAY 'queryName'

FIND is followed with an action that being a rule/process based on the FIND query.
DISPLAY will just show the results of the query.