Search found 781 matches

by pbrad
Wed May 07, 2014 12:13 pm
Forum: Problem reports
Topic: Google maps & SSL
Replies: 12
Views: 24304

Sorry, I guess that I should have clarified for users. The required change is to change the url from http://... to https://...

Cheers,
Pete
by pbrad
Wed May 07, 2014 12:12 pm
Forum: Problem reports
Topic: Google maps & SSL
Replies: 12
Views: 24304

Hi, I'm not sure whether you need to make the change in all of the js files or only one but I can confirm that if you change it in all three, Google maps works in an https environment and does not break the ssl lock. Support, would it be possible to make this change permanently in the relevant js fi...
by pbrad
Wed Apr 23, 2014 10:57 am
Forum: General discussion and questions about Aware IM
Topic: Query Question
Replies: 6
Views: 4517

Hi,
Your combo dropdown list is a multiple reference, therefore in order to find out if a choice was selected I think you would need to use something like:

IF COUNT Status WHERE(Status IN ThisMyStatus.Status AND Status='VALUE A')>0 Then
FIND ...

Cheers,
Pete
by pbrad
Wed Apr 23, 2014 10:45 am
Forum: Problem reports
Topic: Can we expose more then one web service from one AwareIM App
Replies: 4
Views: 6221

Hi Himanshu,

No, in order to do this you need to find the first object then create a second obect from the first object with the attributes that you wish to return and then return the second object. This is also the best way to resolve your circular reference issue.

Cheers,
Pete
by pbrad
Tue Apr 22, 2014 11:03 am
Forum: Problem reports
Topic: Can we expose more then one web service from one AwareIM App
Replies: 4
Views: 6221

Hi,
This means that either your parameter object or returned object contains a reference attribute within it. It is not related to multiple services which are allowed.

Cheers,
Pete
by pbrad
Sat Apr 19, 2014 11:02 am
Forum: Problem reports
Topic: Google maps & SSL
Replies: 12
Views: 24304

I'm wondering if it might be: initGoogleMaps: function () { // load the appropriate file - the call back indicates a function that will fire the event var fileName = "http://maps.googleapis.com/maps/api/js?sensor=false&callback=gm_loaded"; if (this.isDynamicFileLoaded (fileName)) in awareApp.js Chee...
by pbrad
Fri Apr 11, 2014 11:20 am
Forum: Problem reports
Topic: Google maps & SSL
Replies: 12
Views: 24304

I also concur that it would be great if the built in google maps feature could call https rather than http. It is unusable otherwise for most people.

Thanks,
Pete
by pbrad
Tue Apr 01, 2014 10:33 am
Forum: General discussion and questions about Aware IM
Topic: Operation Box Width CSS
Replies: 4
Views: 2925

If the width could be dynamic based on the content, that would be great.
Thanks,
Pete
by pbrad
Mon Mar 17, 2014 6:24 pm
Forum: General discussion and questions about Aware IM
Topic: Multi Tenancy question
Replies: 15
Views: 9411

Hi, The way that I typically handle it is to create a Client(Club) object and then relate relevant objects to that client such as users and flight records. for example: FIND FlightRecord WHERE(FlightRecord.xxx=yyy AND FlightRecord.Club=LoggedInRegularUser.Club You will just need to tweak most of you...
by pbrad
Sat Mar 15, 2014 1:46 pm
Forum: General discussion and questions about Aware IM
Topic: Problem With Custom Form
Replies: 2
Views: 2218

Hi,
This looks like you are using the presentation builder? If so, you can't overlap items the same way that you can in reports. Can you maybe just get rid of the background colour and underline the column headings to serve the same purpose?

Cheers,
Pete
by pbrad
Fri Feb 14, 2014 11:32 am
Forum: General discussion and questions about Aware IM
Topic: Complicated Query Scenario Advice
Replies: 9
Views: 5910

Hi,
In order to be available in SystemUser rules, the attribute has to exist in all objects that are in the business object group.

Cheers,
Pete
by pbrad
Thu Jan 30, 2014 1:05 pm
Forum: General discussion and questions about Aware IM
Topic: Large external datasets
Replies: 4
Views: 4136

I'm not sure why it would make sense to have an internal AwareIM BO that is identical to an external AwareIM BO however, assuming that there is a logical reason for it I think that I would do an initial population of the internal BO to match all of the external BO records via process, export/import ...
by pbrad
Sat Jan 25, 2014 5:46 pm
Forum: General discussion and questions about Aware IM
Topic: Single Process to Output to Multiple Content Panels
Replies: 5
Views: 4297

Hi, You can create a layout in your visual perspective and include whatever panels you want to show. Hide the layout by putting something in the "Condition when invisible" like 1=1. This will ensure that the layout only shows when you want it to. Add a process/rule wherever you want it to call that ...
by pbrad
Mon Jan 20, 2014 3:25 pm
Forum: General discussion and questions about Aware IM
Topic: In-app help? (or something else?)
Replies: 9
Views: 6849

Hi, I have a solution that I am quite happy with but it does take a little out of the box work. Operational Mode: 1. Help files can be accessed individually in an ajax popup layer. They are called from custom html that shows the icon and calls the layer. In this manner, you can add context specific ...
by pbrad
Sun Jan 19, 2014 2:10 am
Forum: General discussion and questions about Aware IM
Topic: Location and messenging capabilities
Replies: 4
Views: 3990

I'm afraid not. At this point AwareIM is only able to host REST services, not consume them. We need to have a rest client built into AwareIM in order to do what I'm talking about (and more).

Pete