Search found 46 matches: jaymertip

Searched query: jaymertip

by Jaymer
Fri Mar 06, 2020 2:16 am
Forum: General discussion and questions about Aware IM
Topic: how to crash CC & BCC lists in outgoing email
Replies: 0
Views: 7619

how to crash CC & BCC lists in outgoing email

... started wondering why his CC's were not getting any emails after they recently made a change. Fixed it with a rule to TRIM when its changed. --> JaymerTip Send Emails to CC & BCC
by Jaymer
Sun Feb 02, 2020 12:17 am
Forum: General discussion and questions about Aware IM
Topic: ANALYSIS: Aware behind the scenes. Context. Passing BOs.
Replies: 7
Views: 10034

ANALYSIS: Aware behind the scenes. Context. Passing BOs.

... bigint',N'SELECT * FROM RO WHERE ID=@P0 ',12829 ----- process ends ----- Read the main BO 2 times, 1 in main process, 1 in sub-process —> JaymerTip Context passing analysis
by Jaymer
Fri Jan 24, 2020 4:57 am
Forum: General discussion and questions about Aware IM
Topic: Preventing InLine Query allowing New Records
Replies: 8
Views: 17874

Re: Preventing InLine Query allowing New Records

From Support:

In render script of a query:
parser.m_doNotAddNewOnTab = true;

added in bld 2464
https://www.awareim.com/forum/viewtopic.php?f=1&t=10421

keyword: create allow prevent disable

--> JaymerTip
by Jaymer
Tue Dec 24, 2019 5:02 pm
Forum: General discussion and questions about Aware IM
Topic: SHOW SECTION_START woes
Replies: 3
Views: 5938

Re: SHOW SECTION_START woes

... the form is drawn, so while its not what you were doing, it wouldn't react to changes on the form dynamically. anyway, thanks for this tip. --> JaymerTip ( Tip from Khos on using a style/class to disable/gray data )
by Jaymer
Mon Dec 02, 2019 4:14 am
Forum: General discussion and questions about Aware IM
Topic: Remove Border on Form Separator
Replies: 3
Views: 5284

Remove Border on Form Separator

... space. I see you are actually using text in the Sep, so you might want to add some styling back in or adjust the padding. Just play with it. --> JaymerTip
by Jaymer
Fri Nov 29, 2019 2:26 am
Forum: General discussion and questions about Aware IM
Topic: Hide delete button on document widget
Replies: 9
Views: 11879

Find Object on Form, Hide or Remove It

... Remove the button with the X from the DOM altogether. $("button.k-upload-action[aria-label='Remove']").remove() --> JaymerTip (example code from John Talbott)
by Jaymer
Sun Nov 17, 2019 6:13 pm
Forum: General discussion and questions about Aware IM
Topic: <SOLVED> Script needs to set Form Field,then auto save Form
Replies: 2
Views: 4074

SOLUTION

... : "portrait", disableAnimations : true, disableSuccessBeep: false } ); } </script> <button onclick="StartScan()">Scan Location</button> --> JaymerTip
by Jaymer
Mon Oct 28, 2019 4:41 pm
Forum: General discussion and questions about Aware IM
Topic: Hiding entire columns in Query (grid)
Replies: 2
Views: 4092

Re: Hiding entire columns in Query (grid)

... And Support's help here: https://www.awareim.com/forum/viewtopic.php?f=1&t=11255#p51887 --> JaymerTip
by Jaymer
Thu Oct 17, 2019 11:12 pm
Forum: General discussion and questions about Aware IM
Topic: Simple script to hide a field on a Form. Need help.
Replies: 3
Views: 4709

Simple script to hide a field on a Form. Need help.

in the past, Support wrote this: --> JaymerTip A field can be hidden by a simple script attached to a field: markup.css ("display", "none"); My question is, what do I need to do to make this conditional? The exact syntax is throwing me, cause ...
by Jaymer
Mon Oct 07, 2019 4:38 am
Forum: General discussion and questions about Aware IM
Topic: Update BO from smartphone Android
Replies: 20
Views: 22792

JSON example

... if all OK, or a 500. Aware will crap out if you mistype a field name, so better to get it working in PostMan, THEN worry about the phone. --> JaymerTip JSON Example, REST processing a JSON response
by Jaymer
Mon Sep 23, 2019 4:28 am
Forum: General discussion and questions about Aware IM
Topic: JS to Auto-resize Grid Columns to fit text
Replies: 8
Views: 9178

JS to Auto-resize Grid Columns to fit text

... in your own Query - the name needs to be the exact as the data source name from Aware, not the column heading. Enjoy and have a great week! —> JaymerTip
by Jaymer
Tue Sep 10, 2019 12:31 am
Forum: General discussion and questions about Aware IM
Topic: [Solved] how do i get a number into a Duration field?
Replies: 6
Views: 6726

Re: how do i get a number into a Duration field?

... your values in 2 diff fields (myHrs, myMin) then its: BO.Duration = BO.myHrs * 3600000 + BO.myMin * 60000 The Duration for 4.25hrs is 15300000 --> JaymerTip
by Jaymer
Mon Sep 02, 2019 11:11 pm
Forum: General discussion and questions about Aware IM
Topic: Multiline Grid Column Headings - Easy with CSS
Replies: 0
Views: 4697

Multiline Grid Column Headings - Easy with CSS

... held down SHIFT (to force reload css/js) while I re-drew the page and when the grid came up it looks like the above image. Pretty nifty. --> jaymertip
by Jaymer
Tue Aug 27, 2019 1:49 am
Forum: General discussion and questions about Aware IM
Topic: Dynamic colors/color picker since bld 2623... explained
Replies: 1
Views: 4028

Dynamic colors/color picker since bld 2623... explained

... be the correct way to do it with the 1=1, and there's no Docs on how to indicate the Color but I got lucky with the <<RO....>> and it worked. --> JaymerTip
by Jaymer
Mon Aug 26, 2019 3:41 am
Forum: General discussion and questions about Aware IM
Topic: Spinner on number fields in Grid HAS TO GO! #IsItJustMe?
Replies: 4
Views: 10763

Spinner on number fields in Grid HAS TO GO! #IsItJustMe?

... then use that in the Grid. Seems like a simple check box when designing the Grid should turn this off. .... or is it just me ? thx jaymer... --> JaymerTip Solution Here