Search found 37 matches: jaymertip
Searched query: jaymertip
- Tue Feb 16, 2021 2:42 am
- Forum: General discussion and questions about Aware IM
- Topic: Show buttons in Panel Operations or Operations w/Record as Disabled
- Replies: 5
- Views: 161
Re: Show buttons in Panel Operations or Operations w/Record as Disabled
... Given this info (and until Aware has a better option built in for Panel Operations) perhaps this strategy could be used on those buttons also. -->JaymerTip Show button as disabled in HTML cell on Form
- Mon Feb 15, 2021 11:38 am
- Forum: General discussion and questions about Aware IM
- Topic: HTTPS / SSL AwareIm
- Replies: 44
- Views: 27864
Re: HTTPS / SSL AwareIm
... certificateKeyFile="C:\AwareIM\Tomcat\conf\certificate.key" type="RSA"/> </SSLHostConfig> </Connector> --> JaymerTip SSL Port 443 Tomcat Config Server.XML Is it really that simple, have you successfully implemented/tested this doing only these 2 things?
- Sun Feb 14, 2021 10:00 pm
- Forum: General discussion and questions about Aware IM
- Topic: HTTPS / SSL AwareIm
- Replies: 44
- Views: 27864
Re: HTTPS / SSL AwareIm
... certificateKeyFile="C:\AwareIM\Tomcat\conf\certificate.key" type="RSA"/> </SSLHostConfig> </Connector> --> JaymerTip SSL Port 443 Tomcat Config Server.XML
- Wed Jan 27, 2021 12:37 am
- Forum: General discussion and questions about Aware IM
- Topic: Expand all rows in a grid
- Replies: 2
- Views: 83
Re: Expand all rows in a grid
... paginate (like only 25,35,etc.) rows per page. And if you return ALL rows, it can take a while to fill the grid. But YMMV good luck Jaymer... --> JaymerTip Auto Expand rows in a grid Group
- Thu Dec 10, 2020 9:46 am
- Forum: General discussion and questions about Aware IM
- Topic: ANALYSIS: Aware behind the scenes. Context. Passing BOs.
- Replies: 7
- Views: 2118
Re: ANALYSIS: Aware behind the scenes. Context. Passing BOs.
... bigint',N'SELECT * FROM RO WHERE [email protected] ',12829 ----- process ends ----- Read the main BO 2 times, 1 in main process, 1 in sub-process —> JaymerTip Context passing analysis Very interesting post and thanks for sharing the analysis. SO, what is the bulletpoint best practices, conclusions ...
- Tue Jun 16, 2020 12:03 am
- Forum: General discussion and questions about Aware IM
- Topic: "Pre" filtering a query
- Replies: 2
- Views: 1773
Re: "Pre" filtering a query
... much. var grid = widget; var ds=grid.dataSource; ds.filter( { logic: "and", filters: [ {field: "ActiveYN", operator: "eq", value: "Y" } ] }); --> JaymerTip pre-filter a Query with clearable filter values
- 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: 5338
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
- 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: 2118
ANALYSIS: Aware behind the scenes. Context. Passing BOs.
... bigint',N'SELECT * FROM RO WHERE [email protected] ',12829 ----- process ends ----- Read the main BO 2 times, 1 in main process, 1 in sub-process —> JaymerTip Context passing analysis
- 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: 13138
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
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
- Tue Dec 24, 2019 5:02 pm
- Forum: General discussion and questions about Aware IM
- Topic: SHOW SECTION_START woes
- Replies: 3
- Views: 2886
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 )
- Mon Dec 02, 2019 4:14 am
- Forum: General discussion and questions about Aware IM
- Topic: Remove Border on Form Separator
- Replies: 2
- Views: 1989
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
- 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: 5705
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)
- 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: 2100
SOLUTION
... : "portrait", disableAnimations : true, disableSuccessBeep: false } ); } </script> <button onclick="StartScan()">Scan Location</button> --> JaymerTip
- 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: 2262
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
- 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: 2458
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 ...