Search found 46 matches: jaymertip

Searched query: jaymertip

by syndeo
Sun Jan 21, 2024 12:52 am
Forum: General discussion and questions about Aware IM
Topic: JS to Auto-resize Grid Columns to fit text
Replies: 8
Views: 9066

Re: 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 Hi Jaymer, Any experience with a grid inside a tabstrip? I'm finding that the autofit fires before the grid is populated. I note that I do ...
by edvwruhs
Wed May 31, 2023 10:12 am
Forum: General discussion and questions about Aware IM
Topic: Show buttons in Panel Operations or Operations w/Record as Disabled
Replies: 7
Views: 5735

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 Hey Jaymer, just a quick question how did you position the button next to the field? When I try ...
by Jaymer
Tue Mar 15, 2022 7:32 pm
Forum: General discussion and questions about Aware IM
Topic: [Solved] need some help with javascript. adjust CSS on a form
Replies: 3
Views: 1318

Solution

Code: Select all

var theList = document.querySelectorAll(".aw-empty");

for (let i = 0; i < theList.length; i++) {
  theList[i].parentElement.classList.add("aw-hide-line");
}
jaymertip --> render script to add css on form
by Jaymer
Sun Jan 16, 2022 6:09 am
Forum: General discussion and questions about Aware IM
Topic: Gracefully logging out new Guest after registration(SOLVED)
Replies: 9
Views: 13981

Re: Gracefully logging out new Guest after registration(SOLVED)

... ` pickups would have been closed. ` + `');` EXEC_SCRIPT `notifyBar('` + AS_STRING(SEARCH_COUNT) + ` pickups would have been closed. ` + `');` --> JaymerTip EXEC_SCRIPT Syntax examples
by Jaymer
Thu Nov 25, 2021 6:20 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] how can i view a PDF Attachment directly from the Grid?
Replies: 6
Views: 10254

Re: how can i view a PDF Attachment directly from the Grid?

... (with help from John): var theID = parser.m_highlightedRow.refValue.split(":")[1]; AwareApp.viewDocument ('ReqLines', theID , 'ReqAttachment') --> JaymerTip Display PDF directly from Grid
by Jaymer
Tue Oct 12, 2021 3:25 pm
Forum: General discussion and questions about Aware IM
Topic: Session Timeout after REST Call [Solved]
Replies: 5
Views: 11920

Re: Session Timeout after REST Call

... bothering online users. But for those who'd want an all-aware solution yours fits the bill. I'll def. keep this in mind for the next issue. JaymerTip --> CORS, REST timeout when calling Aware's service
by Jaymer
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: 7
Views: 5735

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
by hpl123
Mon Feb 15, 2021 11:38 am
Forum: General discussion and questions about Aware IM
Topic: HTTPS / SSL AwareIm
Replies: 48
Views: 94936

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?
by Jaymer
Sun Feb 14, 2021 10:00 pm
Forum: General discussion and questions about Aware IM
Topic: HTTPS / SSL AwareIm
Replies: 48
Views: 94936

Re: HTTPS / SSL AwareIm

... certificateKeyFile="C:\AwareIM\Tomcat\conf\certificate.key" type="RSA"/> </SSLHostConfig> </Connector> --> JaymerTip SSL Port 443 Tomcat Config Server.XML
by Jaymer
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: 2419

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
by hpl123
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: 9905

Re: 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 Very interesting post and thanks for sharing the analysis. SO, what is the bulletpoint best practices, conclusions ...
by Jaymer
Tue Jun 16, 2020 12:03 am
Forum: General discussion and questions about Aware IM
Topic: "Pre" filtering a query
Replies: 3
Views: 5399

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