Search found 197 matches

by UnionSystems
Sun Dec 23, 2018 3:01 am
Forum: Problem reports
Topic: LIST_TABLE() HTML output
Replies: 5
Views: 8797

LIST_TABLE() HTML output

The first row of the HTML produced by the LIST_TABLE() function seems to be missing opening and closing <tr> tags. Ideally that first row should also be wrapped in <thead></thead> tags and the remain rows in <tbody> </tbody> tags. This would make the HTML code complete and enable adoption of various...
by UnionSystems
Sun Dec 23, 2018 1:39 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 23931

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

I've had a win on this and my "solution" does not use EXEC_STRING or create child records and gives me the required output quickly using an AwareIM document template :-) This is the UI I 've had for a while that allows the user to define and save their FIND criteria. My struggle has always been crea...
by UnionSystems
Fri Dec 21, 2018 2:40 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 23931

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

I'm contemplating exploring use of REST output from AwareIM as a way to get the data quickly Can you please share more about this idea? Concept is : Enable user to create unique FIND statement and store that in object use AwareIM REST exposing facility to EXEC_STRING that FIND statement returning r...
by UnionSystems
Fri Dec 21, 2018 12:23 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 23931

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

Thanks Tom and Jaymer for your advice. I've been using the INSERT the resulting instances of Person BO into LoggedInSystemUser.Selected_Persons method to collect result into a query for a few months but the problem I always get is when the results of the FIND are more than 1,000 it starts to take to...
by UnionSystems
Wed Dec 19, 2018 5:26 am
Forum: General discussion and questions about Aware IM
Topic: DISPLAY ACTION RESULTS COLUMNS
Replies: 2
Views: 4670

DISPLAY ACTION RESULTS COLUMNS

I want to dynamically build a FIND and pass the resulting context to a controlled set of columns (like a query). When I run a process with the following DISPLAY Person WHERE Person.Surname='Smith' I see the correct result rows but with a random set of columns and header caption of "Search Results". ...
by UnionSystems
Sat Nov 17, 2018 7:55 am
Forum: Tips and Tricks
Topic: Moving Columns Standard Grid Settings
Replies: 4
Views: 10551

Re: Moving Columns Standard Grid Settings

This was on a MAC version of Configuration tool. Does it work on Windows as well?
by UnionSystems
Sat Nov 17, 2018 6:00 am
Forum: Tips and Tricks
Topic: Moving Columns Standard Grid Settings
Replies: 4
Views: 10551

Moving Columns Standard Grid Settings

We have some enormous Grids with lots of Columns (they work surprisingly fast in operations mode). But its always tediously slow to shift the sequence of a column in the grid clicking the Up and Down links. Screen Shot 2018-11-17 at 3.48.08 pm.png I just slipped on my keyboard and held down the spac...
by UnionSystems
Mon Nov 05, 2018 9:40 am
Forum: General discussion and questions about Aware IM
Topic: REST http response codes
Replies: 8
Views: 12682

Re: REST http response codes

Vlad delivers (again).

New 8.2 build 2561 changelog

Code: Select all

Improvements:
1. It is now possible to capture HTTP response codes in REST
We have not used it yet, but thank you Vlad.
by UnionSystems
Tue Oct 23, 2018 9:36 am
Forum: General discussion and questions about Aware IM
Topic: REST http response codes
Replies: 8
Views: 12682

REST http response codes

The addition of REST service consumption to AwareIM is a huge addition to a fantastic package. We have extended our AwareIM Apps with data from numerous REST services. Thank you Vladimir. Some of the REST services we have used with AIM return addrional information via the http response codes (aka st...
by UnionSystems
Thu Jul 12, 2018 10:56 pm
Forum: General discussion and questions about Aware IM
Topic: [OFFICIAL] the v8.2 "minor" improvement list
Replies: 46
Views: 102169

Tree item Duplicate Option

I often use an existing item in the Business Spaces tree as a prototype for a new item. To do this I right click "Copy" the item then scroll to it's parent node then right click "Paste". In a large BSV with lots of items this can be lots of mouse mileage. There are keyboard shortcuts to Copy and Pas...
by UnionSystems
Tue Jul 03, 2018 9:29 am
Forum: General discussion and questions about Aware IM
Topic: What’s the trick to build a JSON string
Replies: 40
Views: 74784

Re: What’s the trick to build a JSON string

A trick we have used in AwareIM to get data into a JSON string is

1. Publish an AwareIM REST Service that outputs as JSON
2. Call that Service using the AwareIM’s URL_CONTENTS function to call the local REST request

Code: Select all

Object.JSON_String = URL_CCONTENTS(‘http://localhost:8080/REST SERVICE ADDRESS’)
by UnionSystems
Fri Jun 29, 2018 9:34 pm
Forum: General discussion and questions about Aware IM
Topic: DISPLAY MESSAGE box width
Replies: 4
Views: 7366

Re: DISPLAY MESSAGE box width

I do the following to control width of DISPLAY MESSAGE and pretty up with HTML. Seems to get me a result without mucking up other screens. NOTES SystemSettings.DQ is assigned a " border:solid 1px transparent; hides a black line that appears if you only have width DISPLAY QUESTION ' <style>#aw-msgbox...
by UnionSystems
Mon Jun 25, 2018 11:18 am
Forum: General discussion and questions about Aware IM
Topic: LIST_LINE problem
Replies: 8
Views: 10028

Re: LIST_LINE problem

Have you tried

Code: Select all

DISPLAY MESSAGE LIST_LINE('FIND ALL Job ORDER BY Job.JobTitle ASC','','/','/','JobTitle')
by UnionSystems
Fri Jun 22, 2018 10:38 pm
Forum: General discussion and questions about Aware IM
Topic: What is the trick with REST to send a JSON String?
Replies: 9
Views: 11998

Re: What is the trick with REST to send a JSON String?

Hi Bruce,

Note new build 2464 includes some REST remedy
When calling REST service with text reply and no OAuth, the reply was not written into the object
.
Not our actual issue but be interesting to see if any changes in the new build help? What build are you using?
by UnionSystems
Mon Jun 18, 2018 11:56 am
Forum: General discussion and questions about Aware IM
Topic: Remove Colon From the Label
Replies: 13
Views: 13097

Re: Remove Colon From the Label

I have an alternative way to remove colons from the end of field labels. Keen to hear any wise critique of this : Add the following javascript to the Form or Form tab Render script /* Removes all colons from field labels */ var labelArray=document.getElementsByTagName("label"); for(var i = 0; i < la...