Search found 620 matches
- Fri Jul 26, 2024 9:50 pm
- Forum: General discussion and questions about Aware IM
- Topic: MySQL 8K row limitation
- Replies: 3
- Views: 7382
Re: MySQL 8K row limitation
Looks like the off-page storage data types will work for you. On-Page Storage: For columns of type TINYTEXT, TEXT, VARCHAR, and BLOB, if the data is small enough to fit within the row's maximum size limit (approximately 8 KB for InnoDB), it is stored directly in the row. Off-Page Storage: For MEDIUM...
- Mon Oct 16, 2023 3:14 pm
- Forum: General discussion and questions about Aware IM
- Topic: Remove "No records available" msg
- Replies: 15
- Views: 191371
Re: Remove "No records available" msg
Init Script
config.noRecords.template = function(e) {
var t = `<div class="k-grid-norecords"><div class="k-grid-norecords-template" style="margin: 0px auto; position: static;">blah blah blah.</div></div>`
return t
}
config.noRecords.template = function(e) {
var t = `<div class="k-grid-norecords"><div class="k-grid-norecords-template" style="margin: 0px auto; position: static;">blah blah blah.</div></div>`
return t
}
- Tue Nov 23, 2021 2:20 am
- Forum: General discussion and questions about Aware IM
- Topic: [SOLVED] how can i view a PDF Attachment directly from the Grid?
- Replies: 6
- Views: 22386
Re: how can i view a PDF Attachment directly from the Grid?
This should do the trick.
Code: Select all
const id = parser.m_highlightedRow.refValue.split(":")[1];
AwareApp.viewDocument ("ReqLines", id, "ReqAttachment");
- Mon Nov 22, 2021 7:03 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: 22386
Re: how can i view a PDF Attachment directly from the Grid?
AwareApp.viewDocument might do what you are looking for.
To test it out, you could use an operation button that executes JavaScript with some hardcoded values.
AwareApp.viewDocument (BOName, BOID, BOAttributeStoringPDF)
To test it out, you could use an operation button that executes JavaScript with some hardcoded values.
AwareApp.viewDocument (BOName, BOID, BOAttributeStoringPDF)
- Wed Nov 10, 2021 4:41 am
- Forum: General discussion and questions about Aware IM
- Topic: Mentions Plug-In
- Replies: 0
- Views: 12815
Mentions Plug-In
All, There was a recent post exploring options for adding a Mentions feature to AwareIM which served as inspiration for developing a UI plug-in. Here is a quick screen cast to give you a visual of how it works. https://screencast-o-matic.com/watch/crX6fcVlPEI Message me here or on Skype if you're in...
- Fri Aug 06, 2021 10:00 pm
- Forum: General discussion and questions about Aware IM
- Topic: Secondary field Grid Sorting (user defined)
- Replies: 2
- Views: 9150
Re: Secondary field Grid Sorting (user defined)
Try this in the grid Init Script
config.sortable = { mode: "multiple" }
config.sortable = { mode: "multiple" }
- Tue Jul 27, 2021 9:47 pm
- Forum: General discussion and questions about Aware IM
- Topic: 2 Line Caption Heading on Query
- Replies: 13
- Views: 25935
Re: 2 Line Caption Heading on Query
Glad to hear it.
- Fri Jul 23, 2021 9:16 pm
- Forum: General discussion and questions about Aware IM
- Topic: 2 Line Caption Heading on Query
- Replies: 13
- Views: 25935
Re: 2 Line Caption Heading on Query
Try this ...
Init Script
Init Script
Code: Select all
config.columns[columnIndex] = {
title: "Un-Earned",
columns: [
{ field: "BOAttributeName", title: "Discount" }
]
}
- Mon Jul 12, 2021 3:02 am
- Forum: General discussion and questions about Aware IM
- Topic: Grid refresh woes
- Replies: 1
- Views: 23425
- Fri Jun 04, 2021 10:58 pm
- Forum: General discussion and questions about Aware IM
- Topic: Force selection of first record on query result.
- Replies: 26
- Views: 53132
Re: Force selection of first record on query result.
Just to be sure ... this is with "Select first record" unchecked?
What happens if you remove this line?
What happens if you remove this line?
Code: Select all
grid.select().click();
- Fri Jun 04, 2021 8:33 pm
- Forum: General discussion and questions about Aware IM
- Topic: Force selection of first record on query result.
- Replies: 26
- Views: 53132
Re: Force selection of first record on query result.
Make sure "Select first record" is unchecked.
- Fri Jun 04, 2021 8:20 pm
- Forum: General discussion and questions about Aware IM
- Topic: Force selection of first record on query result.
- Replies: 26
- Views: 53132
Re: Force selection of first record on query result.
It works for me. Show me the endless loop.
- Fri Jun 04, 2021 2:38 am
- Forum: General discussion and questions about Aware IM
- Topic: Force selection of first record on query result.
- Replies: 26
- Views: 53132
Re: Force selection of first record on query result.
Try this ...
Code: Select all
widget.bind("dataBound", function (e) {
const grid = e.sender;
const row = grid.table.find("tr:eq(0)");
parser.highlightRow(row, grid); // This is what highlights (selects) the row.
grid.select().click(); // This is only needed to run the default row operation.
})
- Thu Jun 03, 2021 5:25 pm
- Forum: General discussion and questions about Aware IM
- Topic: Pimp My App
- Replies: 7
- Views: 18350
Re: Pimp My App
In short, there is likely a way to accomplish your goal in some way. It would be best to see your specific use case. In this particular example, a few notes: 1. Throughout the process of entering auto quote information, the right navigation section can be referenced to view information that has been...
- Thu Jun 03, 2021 5:06 am
- Forum: General discussion and questions about Aware IM
- Topic: Pimp My App
- Replies: 7
- Views: 18350
Pimp My App
Here is a brief walk-thru of an AwareIM app demonstrating some enhanced look, feel and functionality possibilities. https://screencast-o-matic.com/watch/cr1efTVhvWc Contact me to take live look and/or discuss project/business opportunities. Thanks, JT Email: johntalbott@live.com Skype: johnptalbott