Search found 1457 matches

by PointsWell
Tue Mar 13, 2018 4:56 am
Forum: General discussion and questions about Aware IM
Topic: HTML onClick in Query Output
Replies: 9
Views: 16566

Re: HTML onClick in Query Output

Hi Mark

Not at my desk at the moment, from memory it asks for

(‘Entity’,’Identifier’,’main’)

The example uses a specific instance id but I can’t figure out the syntax to be dynamic, ie This ID
by PointsWell
Tue Mar 13, 2018 4:49 am
Forum: General discussion and questions about Aware IM
Topic: HTML onClick in Query Output
Replies: 9
Views: 16566

Re: HTML onClick in Query Output

Spoke too soon.

I need awareApp2 function which passes context. Does anyone have an example of what this should look like as I haven’t managed to get the correct syntax worked out from the manual.
by PointsWell
Mon Mar 12, 2018 11:06 pm
Forum: Tips and Tricks
Topic: Simple REST - Weather
Replies: 5
Views: 14690

Re: Simple REST - Weather

Jaymer wrote: When Getting Weather for the 1st try, I got an error that it couldn't find BO "current"
Have heard back from Vlad. This is an issue that has been addressed
by PointsWell
Mon Mar 12, 2018 12:24 pm
Forum: General discussion and questions about Aware IM
Topic: HTML onClick in Query Output
Replies: 9
Views: 16566

Re: HTML onClick in Query Output

Thanks that works.
by PointsWell
Mon Mar 12, 2018 6:45 am
Forum: General discussion and questions about Aware IM
Topic: HTML onClick in Query Output
Replies: 9
Views: 16566

HTML onClick in Query Output

I have a BO that has to show in a Query. It relates to a line on a bank statement. I want to edit the statement line to associate it with a Contact. I could edit the form but that seems like at least 1 step to many. I thought about using inline editing but that won't commit until the user focus blur...
by PointsWell
Mon Mar 12, 2018 12:39 am
Forum: Tips and Tricks
Topic: Simple REST - Weather
Replies: 5
Views: 14690

Re: Simple REST - Weather

So from what I can make out it seems that AIM is trying to insert the XML into a BO called current, ignoring the fact that you have renamed the receiving object to some other name than current. This is very similar to the issue I was having with the complex/ugly XML example I was working with. Have ...
by PointsWell
Sun Mar 11, 2018 5:30 am
Forum: General discussion and questions about Aware IM
Topic: Trees & Recursion
Replies: 3
Views: 8110

Trees & Recursion

I have a BO called Contact. Contact can be Person or Company and if Contact is Company it can have: ps_ParentCo (which is a Company) pm_Subsidiaries (Companies) pm_Employees (People - obvs) I am trying to get a Tree to display the organisational hierarchy but I am completely flummoxed as to how to a...
by PointsWell
Sun Mar 11, 2018 4:48 am
Forum: General discussion and questions about Aware IM
Topic: VP Containers Panels & Borders
Replies: 9
Views: 14265

VP Containers Panels & Borders

I am building a dashboard to my application and have come across a challenge. If I put items into a Content Panel I can put a border around it like this: Screen Shot 2018-03-11 at 15.42.31.png Title of the Panel is Forward Pipeline and the border goes round the outside. However if I have a more comp...
by PointsWell
Sun Mar 11, 2018 1:21 am
Forum: Tips and Tricks
Topic: Simple REST - Weather
Replies: 5
Views: 14690

Re: Simple REST - Weather

Haha it was a trial and error - the response is JSON and not XML. Have a look at http://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=b6907d289e10d714a6e88b30761fae22 I worked out that everything that follows [ is a child BO - I only used the current forecast in my test, but the week...
by PointsWell
Sun Mar 11, 2018 12:20 am
Forum: General discussion and questions about Aware IM
Topic: V8 - VP - standard menu header&footer html&CSS -- where?
Replies: 4
Views: 7792

Re: V8 - VP - standard menu header&footer html&CSS -- where?

Is this different from this:
Screen Shot 2018-03-11 at 11.18.27.png
Screen Shot 2018-03-11 at 11.18.27.png (22.01 KiB) Viewed 7780 times
Select the top level of the menu item and it is in the bottom right pane of the configurator.
by PointsWell
Fri Mar 09, 2018 1:32 am
Forum: Tips and Tricks
Topic: Simple REST - Weather
Replies: 5
Views: 14690

Simple REST - Weather

This isn't a tip or a trick, it's just the first REST API call that I have made work. This is a very simple API to get the weather conditions from https://openweathermap.org To use it you will need to register and obtain a key. Store the Key in SystemsSettings.KeyWeather and store it as '&APPID xxxx...
by PointsWell
Thu Mar 08, 2018 9:33 am
Forum: General discussion and questions about Aware IM
Topic: [CLOSED] the OLD Official v8.1 REST thread - examples, ...]
Replies: 14
Views: 28528

Re: the Official v8.1 REST thread - examples, services, etc.

Yeah I have it going into some BOs now, but I am getting a random error that I don't understand So JSON goes into: Weather: Weather.coords Weather.main Weather.weather WeatherCoords: WeatherCoords.lat WeatherCoords.lon WeatherMain: WeatherMain.temp WeatherMain.temp_min WeatherMain.temp_max Etc etc B...
by PointsWell
Thu Mar 08, 2018 6:59 am
Forum: General discussion and questions about Aware IM
Topic: [CLOSED] the OLD Official v8.1 REST thread - examples, ...]
Replies: 14
Views: 28528

Re: the Official v8.1 REST thread - examples, services, etc.

The Singleton message is not an error it is a nota bene reminder that you can only have one instance of the BO when running. What I have done is prefaced the calling of the service with a process step IF NOT EXISTS THEN CREATE. Also I don't think your parameters don't need a ? in them, that is added...