Search found 201 matches

by idpSteve
Tue May 19, 2020 6:12 am
Forum: General discussion and questions about Aware IM
Topic: IOS PhoneGap Build
Replies: 11
Views: 13093

Re: IOS PhoneGap Build

Hi Mark, From my experience: There was a change to iOS submission requirements on the 30th of April. You now are required to build apps with iOS SDK 13 and can no longer use UIWebView in your apps anymore- you are now required to use WKWebView instead. To build with iOS SDK 13 you must build your ap...
by idpSteve
Wed Apr 22, 2020 3:40 am
Forum: General discussion and questions about Aware IM
Topic: Phonegap IOS Credentials
Replies: 4
Views: 6871

Re: Phonegap IOS Credentials

Hi Mark. We have some live apps in the apple app store. The only part of the process that requires a mac is getting the .ipa file which you download from phonegap uploaded to appstoreconnect. This must be done on a mac (I use transporter- a mac app that's replaced application loader- but you can use...
by idpSteve
Mon Mar 16, 2020 5:03 am
Forum: General discussion and questions about Aware IM
Topic: chart query embed in html
Replies: 2
Views: 8232

Re: chart query embed in html

Try this (NOT sure it will work but worth a try..)

<div id="ChartID"></div><div>another 3 column table</div>

SCRIPT

AwareApp.runQuery ('MyChartQuery','ChartID');
by idpSteve
Fri Feb 21, 2020 1:00 pm
Forum: General discussion and questions about Aware IM
Topic: Gracefully logging out new Guest after registration(SOLVED)
Replies: 9
Views: 14017

Re: Gracefully logging out a new Guest after registration

Hi Mark.

This works for me:

EXEC_SCRIPT `AwareApp.logout('`+SystemSettings.LoginPage+`');`
by idpSteve
Wed Feb 19, 2020 6:26 am
Forum: General discussion and questions about Aware IM
Topic: Gracefully logging out new Guest after registration(SOLVED)
Replies: 9
Views: 14017

Re: Gracefully logging out a new Guest after registration

Sort of.. If you need to enclose a quote in quotes you can use a grave accent for the outside 'quotes' .

So for example:

DISPLAY MESSAGE `Please don't use quotes` works,

DISPLAY MESSAGE 'Please don't use quotes' won't work.
by idpSteve
Tue Feb 18, 2020 11:58 am
Forum: General discussion and questions about Aware IM
Topic: Gracefully logging out new Guest after registration(SOLVED)
Replies: 9
Views: 14017

Re: Gracefully logging out a new Guest after registration

This should work- add a new rule after your display message:

EXEC_SCRIPT `AwareApp.logout('logonAdmin.html');`

You'd need to change the 'logonAdmin.html' to the name of the login page for your app if that's where you'd like users to end up..

Let me know!
by idpSteve
Wed Jan 29, 2020 9:29 am
Forum: General discussion and questions about Aware IM
Topic: Complex Rule will not execute correctly
Replies: 5
Views: 6701

Re: Complex Rule will not execute correctly

I've had this before- wasted a lot of time on it. Seems more than 3 ELSE IF statements and the ones further down the line get ignored. If you change up the order of your ELSE IFs then you should see that the top few will trigger.

To me this is a bug, just never got to posting it.
by idpSteve
Mon Jan 20, 2020 10:54 am
Forum: Problem reports
Topic: Empty log-file when importing in operation mode
Replies: 6
Views: 16206

Re: Empty log-file when importing in operation mode

I've had the same thing recently.
by idpSteve
Tue Dec 10, 2019 6:53 am
Forum: General discussion and questions about Aware IM
Topic: What is the context after a CREATE object? (SOLVED)
Replies: 8
Views: 8560

Re: What is the context after a CREATE object?

That looks fine. You do know that you are finding a record, and doing nothing with it? FIND doesn't show you any results, it just puts the object(s) in context.
by idpSteve
Tue Dec 10, 2019 5:31 am
Forum: General discussion and questions about Aware IM
Topic: What is the context after a CREATE object? (SOLVED)
Replies: 8
Views: 8560

Re: What is the context after a CREATE object?

Hi ddumas

this = input object
that=found object

You can just try "FIND SendMemberMessages WHERE SendMemberMessages.ID=DummyIncoming.MessageID"

That's what I'd do anyway.
by idpSteve
Mon Dec 09, 2019 11:47 am
Forum: General discussion and questions about Aware IM
Topic: Open a VP as Full Screen?
Replies: 3
Views: 4637

Re: Open a VP as Full Screen?

I think this is what a 'mobile app' does in Aware IM- it takes the web app, and puts it in a minified browser window that is full screen. (and it allows access to some native features like location, push notifications and camera etc, but in essence its a bookmark that opens in a minified chromium br...
by idpSteve
Mon Dec 09, 2019 11:13 am
Forum: General discussion and questions about Aware IM
Topic: Open a VP as Full Screen?
Replies: 3
Views: 4637

Re: Open a VP as Full Screen?

Hi Mark.

Do you mean take the whole browser window, or the same as hitting F11?
by idpSteve
Wed Dec 04, 2019 4:10 pm
Forum: General discussion and questions about Aware IM
Topic: How add Customer Birthday into Appointment?
Replies: 6
Views: 7733

Re: How add Customer Birthday into Appointment?

I do this with an extra attribute, and a scheduled process that runs at 00:01 on the 1st of January. I have DateOfBirth and BirthdayThisYear as two date attributes, then a rule that says Person.BirthdayThisYear=AS_DATE( AS_STRING(DAY_OF_MONTH(Person.DateOfBirth))+'-'+ AS_STRING(MONTH(Person.DateOfBi...
by idpSteve
Mon Dec 02, 2019 5:40 am
Forum: General discussion and questions about Aware IM
Topic: Calling REST service from mobile app
Replies: 0
Views: 3894

Calling REST service from mobile app

Hi All.

Got a cool integration working on web. It requires a user to authenticate themselves. Issue is, when I run the same process from my mobile app I get redirected to a browser (fine to enter credentials) but the response is also returned in the browser. Any ideas?
by idpSteve
Fri Nov 29, 2019 6:46 am
Forum: General discussion and questions about Aware IM
Topic: Some useful improvements in build 2710
Replies: 1
Views: 2932

Re: Some useful improvements in build 2710

Awesome, thanks!

Could you also look into adding the 'Only display paging bar when necessary' (available for grids) to custom displays? Would be a cool feature for us at least. I'm not sure if this has been added already or not (still on build 2708)