Search found 619 matches

by johntalbott
Sat Feb 22, 2020 9:49 pm
Forum: General discussion and questions about Aware IM
Topic: Close Button on Popup Form ignores edits (SOLVED)
Replies: 9
Views: 23931

Re: Close Button on Popup Form ignores edits

Put this in the Render tab of the Advanced scripts setting of the form.

$(".aw-form-buttons").css ("display", "none");
by johntalbott
Fri Jan 31, 2020 11:38 pm
Forum: General discussion and questions about Aware IM
Topic: REST Call Error Code 1010 (Solved)
Replies: 7
Views: 25307

Re: REST Call Error Code 1010

Thanks for the guidance.

I narrowed it down to the User-Agent header. It appears that hosts throwing the error must require it.

https://developer.mozilla.org/en-US/doc ... User-Agent

https://stackoverflow.com/questions/242 ... uest-valid
by johntalbott
Thu Jan 30, 2020 12:54 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 10495857

Re: Which features do you want in the next release?

Consuming a REST API Enhancements 1. Ability to iterate through data returned via a REST API without the need to commit it to the database first. 2. Ability to do JSON.parse and JSON stringify operations within a process I don't understand 1) at all and I don't understand why you need 2), since it ...
by johntalbott
Sun Jan 26, 2020 4:29 pm
Forum: General discussion and questions about Aware IM
Topic: REST Call Error Code 1010 (Solved)
Replies: 7
Views: 25307

Re: REST Call Error Code 1010

Hello Himanshu. Thanks for the information.

I've tested in 8.3 and the latest build (2719) of 8.4.
by johntalbott
Sun Jan 26, 2020 1:26 am
Forum: General discussion and questions about Aware IM
Topic: REST Call Error Code 1010 (Solved)
Replies: 7
Views: 25307

REST Call Error Code 1010 (Solved)

Is anyone familiar with this error? There is nothing in the service documentation that references error 1010. https://positionstack.com/documentation I get a similar popup message in the browser, but the following is from the AIM server output: 2020-01-26 00:58:12,521 ERROR RTCRM#admin -Execution Ex...
by johntalbott
Thu Jan 23, 2020 12:23 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 10495857

Re: Which features do you want in the next release?

Consuming a REST API Enhancements

1. Ability to iterate through data returned via a REST API without the need to commit it to the database first.
2. Ability to do JSON.parse and JSON stringify operations within a process
by johntalbott
Fri Jan 17, 2020 4:28 pm
Forum: General discussion and questions about Aware IM
Topic: How to hide multi tab query form one tab based on condition
Replies: 2
Views: 4535

Re: How to hide multi tab query form one tab based on condit

Each tab is represented by a Form Section that has a "Not present when" setting.

You could set it to LoggedInSystemUser.AccessLevel='ABC'
aimformsection-notpresentwhen.png
aimformsection-notpresentwhen.png (113.22 KiB) Viewed 4529 times
by johntalbott
Tue Jan 14, 2020 1:48 am
Forum: General discussion and questions about Aware IM
Topic: Can I have the top row in query selected if only 1 match?
Replies: 6
Views: 10540

Re: Can I have the top row in query selected if only 1 match

This should do the trick ...

Query Render Script

Code: Select all

widget.bind("dataBound", function (e) {
	if (widget.items().length === 1) {
		widget.select("tr:eq(0)")
		parser.onTableClick("tr:eq(0)", widget)
	}
})
With this approach, you might not need this line:

Code: Select all

widget.select("tr:eq(0)")
by johntalbott
Mon Jan 13, 2020 9:59 pm
Forum: General discussion and questions about Aware IM
Topic: Can I have the top row in query selected if only 1 match?
Replies: 6
Views: 10540

Re: Can I have the top row in query selected if only 1 match

Are you saying that even when you physically click the row it doesn't work?
by johntalbott
Sat Jan 11, 2020 2:43 am
Forum: General discussion and questions about Aware IM
Topic: Can I have the top row in query selected if only 1 match?
Replies: 6
Views: 10540

Re: Can I have the top row in query selected if only 1 match

Try this ...

Query Render Script

Code: Select all

widget.bind("dataBound", function(e) {
    if (widget.items().length === 1) {
         widget.select("tr:eq(0)");
     })
}
by johntalbott
Thu Jan 09, 2020 12:44 am
Forum: General discussion and questions about Aware IM
Topic: Autofocus cursor on form field when opening?
Replies: 9
Views: 12723

Re: Autofocus cursor on form field when opening?

If this just needs to work for the first tab of the form when it first opens, here is a simple approach.

Form Render Script

Code: Select all

setTimeout(function(){
     $("input[name=FirstName]").focus()
}, 500)
by johntalbott
Wed Jan 08, 2020 4:27 pm
Forum: General discussion and questions about Aware IM
Topic: ??? How do we use new ftr: Class in Display Rule
Replies: 4
Views: 5664

Re: ??? How do we use new ftr: Class in Display Rule

The CSS Style in this configuration form is altering the "style" attribute of the associate HTML element. "class" is different attribute of an HTML element. See below. <input id="aw_field_Customer_EmailAddress_19417" type="email" class="k-textbox" name="EmailAddress" maxlength="60" style="width: 350...
by johntalbott
Wed Jan 08, 2020 4:02 pm
Forum: General discussion and questions about Aware IM
Topic: Have Entry Field in Form NOT in Tab Order
Replies: 12
Views: 16062

Re: Have Entry Field in Form NOT in Tab Order

Yep. That's one of the other ways.
by johntalbott
Tue Jan 07, 2020 2:52 am
Forum: General discussion and questions about Aware IM
Topic: Have Entry Field in Form NOT in Tab Order
Replies: 12
Views: 16062

Re: Have Entry Field in Form NOT in Tab Order

As mentioned by Jaymer, markup doesn't work.

There are a few ways to do it. Here is one of them.

Init Script of field
field.m_config.tabOrder="-1"