Search found 1143 matches

by ACDC
Wed Jan 25, 2023 6:46 pm
Forum: General discussion and questions about Aware IM
Topic: DISPLAY LAYOUT - LEFT MENU FROM VP........
Replies: 21
Views: 6720

Re: DISPLAY LAYOUT - LEFT MENU FROM VP........

Standard practice on this forum is that since it only accepts zips, so you make files that end in.zip just for upload purposes. Then you rename it to remove that. Then it’s a regular BSV, which is already compressed. Yes i understand, I tried renaming it at first but that was a problem, eventually ...
by ACDC
Wed Jan 25, 2023 5:47 pm
Forum: General discussion and questions about Aware IM
Topic: DISPLAY LAYOUT - LEFT MENU FROM VP........
Replies: 21
Views: 6720

Re: DISPLAY LAYOUT - LEFT MENU FROM VP........

excellent, lemme check it out, thank you

BTW, what file is this I cannot unzip, unzip reports error ?
by ACDC
Wed Jan 25, 2023 6:14 am
Forum: General discussion and questions about Aware IM
Topic: DISPLAY LAYOUT - LEFT MENU FROM VP........
Replies: 21
Views: 6720

Re: DISPLAY LAYOUT - LEFT MENU FROM VP........

Not sure that would work becuase the intial width of the LEFT menu needs to be set smaller on the Icon only menu
by ACDC
Wed Jan 25, 2023 6:00 am
Forum: General discussion and questions about Aware IM
Topic: DISPLAY LAYOUT - LEFT MENU FROM VP........
Replies: 21
Views: 6720

Re: DISPLAY LAYOUT - LEFT MENU FROM VP........

This seems to be more like Kendo UI auto collapse drawer which would be great to have access to. That's exactly the kind of behavior I was referring to, I wonder if that would support a secondary-level menu item. Also what would be involved in implementing this in AwareIM - Advanced script I wonder...
by ACDC
Wed Jan 25, 2023 3:12 am
Forum: General discussion and questions about Aware IM
Topic: DISPLAY LAYOUT - LEFT MENU FROM VP........
Replies: 21
Views: 6720

DISPLAY LAYOUT - LEFT MENU FROM VP........

DISPLAY LAYOUT allows some really interesting concepts in UI presentation and much versatility What about extending this function to include LEFT Menu and RIGHT Menu, something Like: DISPLAY LAYOUT LEFT MENU FROM_VP Admin2. This will leave everything else in place while magically replacing the Menu ...
by ACDC
Fri Dec 09, 2022 3:00 am
Forum: General discussion and questions about Aware IM
Topic: When will we see version 9
Replies: 6
Views: 1854

Re: When will we see version 9

with over 3 months since the last build, I figure V9 is ALMOST here!
Good question , any ideas of the new features/ enhancements

Also the forum seems very quiet, whats going on :shock:
by ACDC
Thu Nov 17, 2022 7:11 pm
Forum: Problem reports
Topic: Grouping Calculations formatting
Replies: 2
Views: 12089

Re: Grouping Calculations formatting

insert this in the presentation section of the Group Summary setup
<div style="text-align: right;"><b>Sub Total : #= kendo.toString(sum, '0.00') #</b></div>
by ACDC
Mon Oct 31, 2022 4:23 am
Forum: Problem reports
Topic: Panel Operation - Add New Record (Inline Editing)
Replies: 5
Views: 17825

Re: Panel Operation - Add New Record (Inline Editing)

If you create Order at the outset and then save it before adding in OrderLines then you have an issue with other users queries picking up the Order before the user completes (or abandons the Order). I have a similar app, but the Order has a Status attribute that gets set to "Completed' once all is ...
by ACDC
Mon Oct 03, 2022 11:10 pm
Forum: Problem reports
Topic: Handling small decimal numbers
Replies: 6
Views: 15000

Re: Handling small decimal numbers

What does it store in the database ?

I work with 4 digits after the decimal and use custom setup of the number format to: #,##0.0000
by ACDC
Sun Oct 02, 2022 5:51 am
Forum: Problem reports
Topic: Handling small decimal numbers
Replies: 6
Views: 15000

Re: Handling small decimal numbers

If you set your number attribute to "decimal" you will have more control over the rounding aspect stored in the DB :

e.g. on the number setup, under Advanced, change SQL Type to: decimal (19,4) or configure the decimal type accordingly
by ACDC
Tue Jul 19, 2022 4:50 am
Forum: General discussion and questions about Aware IM
Topic: Can I add Minutes to TimeStamp?
Replies: 12
Views: 9215

Re: Can I add Minutes to TimeStamp?

But that does not always work... like in the second series which I am still trying to solve. Irritating!!! If you set your number attribute to "decimal" you will have more control over the rounding aspect stored in the DB : e.g. on the number setup, under Advanced, change SQL Type to: decimal (19,4)
by ACDC
Wed Jun 01, 2022 7:05 pm
Forum: General discussion and questions about Aware IM
Topic: How to default a value in a query
Replies: 5
Views: 2729

Re: How to default a value in a query

When executing a query that uses (Ask at run-time) is it possible to default the value so that the user does not need to enter it? Instead of "Ask at Run Time" option, create an Input Object dedicated for the query containing the relevant attributes with initial settings and rules Then in your proc...
by ACDC
Wed Feb 23, 2022 9:31 am
Forum: General discussion and questions about Aware IM
Topic: Problem with simple SUBSTRING / INDEX_OF
Replies: 11
Views: 5721

Re: Problem with simple SUBSTRING / INDEX_OF

You could do : REPLACE PATTERN (strip out the _) and WORDS_FROM_RIGHT , its a work around :)

one of my use examples:
Audiogram.Time=WORDS_FROM_RIGHT(REPLACE_PATTERN(Audiogram.Date_Time_of_meassure,'_',' '),1)