Search found 297 matches

by Jhstephenson
Fri Mar 11, 2022 10:54 pm
Forum: General discussion and questions about Aware IM
Topic: Tree View Question
Replies: 5
Views: 1508

Re: Tree View Question

We have tried that before and we get an error that says...

Operation 'Review Reports' used in Presentation information in attribute EmployeesSupervised in the form section Supervision of form Main in the business object Employee uses business object 'ThisEmployee' which has not been found.
by Jhstephenson
Fri Mar 11, 2022 5:34 pm
Forum: General discussion and questions about Aware IM
Topic: Tree View Question
Replies: 5
Views: 1508

Tree View Question

Back to some Tree View Questions... I have a tree view of Employees Supervised that looks some like this... Employees Supervised by <<LoggedInEmployee>> Mickey Donald Goofy Pluto Dewie Louie Minnie Daisy Hewie Basically the Logged in Employee supervises Mickey who supervises Donald, Goofy, and Pluto...
by Jhstephenson
Mon Mar 07, 2022 4:46 pm
Forum: General discussion and questions about Aware IM
Topic: Row or Tree Expansion
Replies: 2
Views: 3334

Re: Row or Tree Expansion

Thanks Jaymer, I will look at that. Along this same line. Is it also possible to set it so that if I click anywhere on the line it will expand the tree branch? My client is worried about fat fingered people and thinks that even if we make the icon larger it will still be difficult for some people to...
by Jhstephenson
Fri Mar 04, 2022 8:50 pm
Forum: General discussion and questions about Aware IM
Topic: Row or Tree Expansion
Replies: 2
Views: 3334

Row or Tree Expansion

In order to expand a row in a query, or a branch on a tree, we click on the '>' type icon on the far left of each branch/row.

That icon is really small, especially on a phone.

Is there a way to increase the size of that icon?
by Jhstephenson
Thu Mar 03, 2022 5:59 pm
Forum: General discussion and questions about Aware IM
Topic: Another Tree View Issue
Replies: 0
Views: 5227

Another Tree View Issue

I have an odd issue on using a Tree Widget. Here is the setup. I have an Employee table that has an attribute called EmployeesSupervised. You can add as many employees as might be needed to each EmployeesSupervised attribute. So, if I am an employee, I could supervise Mickey Mouse who could in turn ...
by Jhstephenson
Thu Feb 24, 2022 7:27 pm
Forum: General discussion and questions about Aware IM
Topic: Tree View - Capture Selected Record
Replies: 1
Views: 2207

Tree View - Capture Selected Record

I have a tree view that works fairly well for what I need. It shows Employees Supervised by a Manager like this: Employees Supervised by Mickey Mouse: > Donald Duck Select > Hewey Select > Dewey Select > Louie Select > Minnie Mouse Select > Goofy Select This is being displayed on a form of the Emplo...
by Jhstephenson
Tue Feb 22, 2022 3:47 pm
Forum: General discussion and questions about Aware IM
Topic: Update BO with the Last Record from a child BO
Replies: 3
Views: 2328

Re: Update BO with the Last Record from a child BO

All I had to do was change my sort order to DESC and add TAKE BEST 1 and it is working.
by Jhstephenson
Tue Feb 22, 2022 2:36 am
Forum: General discussion and questions about Aware IM
Topic: Update BO with the Last Record from a child BO
Replies: 3
Views: 2328

Re: Update BO with the Last Record from a child BO

Thanks Bruce. I forgot about ‘TAKE BEST’. I will. Play with that and see what I get.
by Jhstephenson
Mon Feb 21, 2022 11:17 pm
Forum: General discussion and questions about Aware IM
Topic: Update BO with the Last Record from a child BO
Replies: 3
Views: 2328

Update BO with the Last Record from a child BO

I need to create an expiration date for a BO based on child records for that BO that have a 'Expires in Years' type attribute. Here is what I have: Parent BO (Event): Has a attribute called LastExpirationDate and one called "EventDate" Child BO (Reasons): Multiple records that have atrributes called...
by Jhstephenson
Tue Feb 08, 2022 2:38 pm
Forum: General discussion and questions about Aware IM
Topic: Query Headers Disappearing
Replies: 7
Views: 3265

Re: Query Headers Disappearing

Thanks Jaymer, Making it the last statement was the trick. Edit/View didn't seem to matter. I had three operations in the process. 1. Set some session variables. 2. If logged In User is an employee VIEW PASS USING Main NOEDIT 3. IF logged In User is not an employee VIEW PASS USING Main I changed 2 &...
by Jhstephenson
Mon Feb 07, 2022 11:36 pm
Forum: General discussion and questions about Aware IM
Topic: Query Headers Disappearing
Replies: 7
Views: 3265

Re: Query Headers Disappearing

Back to this issue. I needed to change the way I opened the form from my query to use a process. Now the called form opens as a popup, not matter what I tell it in the "Operations with records" for the operation that calls the process. I have told it to use the Default Output (result: opens as a pop...
by Jhstephenson
Wed Feb 02, 2022 6:50 pm
Forum: General discussion and questions about Aware IM
Topic: implement 'Back' button on Mobile Query
Replies: 5
Views: 1547

Re: implement 'Back' button on Mobile Query

Screenshot 2022-02-02 114941.png
Screenshot 2022-02-02 114941.png (16.02 KiB) Viewed 1522 times
by Jhstephenson
Wed Feb 02, 2022 3:43 pm
Forum: General discussion and questions about Aware IM
Topic: implement 'Back' button on Mobile Query
Replies: 5
Views: 1547

[Solved] implement 'Back' button on Mobile Query

Figured out the issue. The 'javascript' I was using included too much stuff.

All I really needed was "history.back()"
by Jhstephenson
Mon Jan 31, 2022 10:05 pm
Forum: General discussion and questions about Aware IM
Topic: implement 'Back' button on Mobile Query
Replies: 5
Views: 1547

Re: implement 'Back' button on Mobile Query

Another addendum... I found I can put this code: <button onclick="history.back()">Return</button> or the other one I mentioned, In the Panel Header and it will work. It shows up like this... Screenshot 2022-01-31 150333.png It isn't exactly how I want it. but it works. I would still prefer to have i...
by Jhstephenson
Mon Jan 31, 2022 9:02 pm
Forum: General discussion and questions about Aware IM
Topic: implement 'Back' button on Mobile Query
Replies: 5
Views: 1547

Re: implement 'Back' button on Mobile Query

I should add that if I put the code:

<button onclick="history.back()">Back</button>

Into the custom query footer it works just fine.

The problem there is that it add that button for every record found. I only want it to be on the form once.