Search found 46 matches: jaymertip
Searched query: jaymertip
- 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: 13965
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 ...
- 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: 11791
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 ...
- Wed Nov 23, 2022 12:43 am
- Forum: General discussion and questions about Aware IM
- Topic: Return multiple instances
- Replies: 3
- Views: 8989
- Fri Aug 12, 2022 5:38 pm
- Forum: General discussion and questions about Aware IM
- Topic: How to remove the Up / Down Arrows in Filters
- Replies: 1
- Views: 1975
- 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: 2403
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");
}
- Sat Jan 22, 2022 11:29 pm
- Forum: General discussion and questions about Aware IM
- Topic: Open Grouped Query with 1st Group expanded and the rest collapsed
- Replies: 3
- Views: 2634
Re: Open Grouped Query with 1st Group expanded and the rest collapsed
Search for “Jaymertip expand”
- 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: 18689
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
- 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: 23359
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
- 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: 23524
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
- 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: 11791
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: 48
- Views: 194210
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: 48
- Views: 194210
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: 4257
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: 13844
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 ...
- Tue Jun 16, 2020 12:03 am
- Forum: General discussion and questions about Aware IM
- Topic: "Pre" filtering a query
- Replies: 3
- Views: 7403
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