Search found 619 matches

by johntalbott
Tue Mar 31, 2020 5:08 pm
Forum: General discussion and questions about Aware IM
Topic: [PITA] Excel Export (still)
Replies: 9
Views: 11394

Re: Excel Export (still)

config.toolbar = ["excel"] is working consistently for me.

Have you tried this in a simple grid .. maybe CRM sample?
by johntalbott
Mon Mar 30, 2020 6:41 am
Forum: General discussion and questions about Aware IM
Topic: Calendar Year View
Replies: 5
Views: 7401

Re: Calendar Year View

As mentioned by swiftinitpvtltd ... the MultiViewCalendar isn't available in the version of Kendo currently used by AIM. Time for a Kendo UI update. :-) Note: Even with the Kendo update it still wouldn't automatically be configurable via the config tool, but at least it could be done with code.
by johntalbott
Sun Mar 29, 2020 7:14 pm
Forum: General discussion and questions about Aware IM
Topic: Calendar Year View
Replies: 5
Views: 7401

Re: Calendar Year View

Mark,

Can you share a mockup with requirements of what you are looking for?

Thanks,
JT
by johntalbott
Wed Mar 25, 2020 6:43 pm
Forum: General discussion and questions about Aware IM
Topic: Over-normalizing Data - means extra DB hits. Issue?
Replies: 3
Views: 5628

Re: Over-normalizing Data - means extra DB hits. Issue?

Jaymer - Are you running into performance issues? It would be a surprise if the bottleneck is related to database table joins.
by johntalbott
Sun Mar 22, 2020 2:35 am
Forum: General discussion and questions about Aware IM
Topic: Mimicking the Soundex Capability
Replies: 3
Views: 6175

Re: Mimicking the Soundex Capability

SQL Server and MySQL have Soundex functions. You could call a stored procedure that uses a soundex function as part of your duplicate check process.
by johntalbott
Fri Mar 20, 2020 4:54 pm
Forum: General discussion and questions about Aware IM
Topic: Setting App name in Browser Tab
Replies: 5
Views: 8502

Re: Setting App name in Browser Tab

This code will handle setting the favicon and title. You can put it in a js file, such as favicon.js. (function() { const link = document.createElement('link'); link.type = 'image/x-icon'; link.rel = 'shortcut icon'; link.href = 'Custom/CSS/MY_APP_NAME/favicon.ico'; document.getElementsByTagName('he...
by johntalbott
Thu Mar 19, 2020 11:41 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] How many rows "Export XLSX" supported?
Replies: 7
Views: 10842

Re: How many rows "Export XLSX" supported?

hpl - It's the result of investing a massive amount of time over the past few years digging through the AIM JS code and mapping to Kendo. cishpix / jaymer - after reviewing the AIM code, the reason it's not working is that AIM doesn't use Kendo's out of the box method of export to xlsx. To see what ...
by johntalbott
Thu Mar 19, 2020 3:40 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] How many rows "Export XLSX" supported?
Replies: 7
Views: 10842

Re: How many rows "Export XLSX" supported?

Even though you have your query set to Unlimited, pages sizes still apply. By default the Kendo grid exports only the current page.

https://docs.telerik.com/kendo-ui/api/j ... l.allpages

In the Init Script try this:

Code: Select all

config.excel.allPages = true
by johntalbott
Wed Mar 18, 2020 3:07 pm
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 10601271

Re: Which features do you want in the next release?

aware_support wrote:Actually we'll setup an application where you can add your features, bugs and annoyances and see the status of them.
Watch this space.
Support - When do you expect this app to be available?
by johntalbott
Mon Mar 09, 2020 5:14 pm
Forum: General discussion and questions about Aware IM
Topic: Record limit on Queries
Replies: 9
Views: 15681

Re: Record limit on Queries

Yes .. it's not working the way I would expect either. After adding IN BATCHES OF XXXX to a query and saving, the IN BATCHES part gets removed. Maybe it's only intended to be used in a process? Taking "IN BATCHES OF" out of the picture, the limiting factor is the paging configuration of the grid. Th...
by johntalbott
Sat Mar 07, 2020 1:26 pm
Forum: General discussion and questions about Aware IM
Topic: Record limit on Queries
Replies: 9
Views: 15681

Re: Record limit on Queries

The size of the batch is 1000 by default, but the default value may be overridden by
specifying the size explicitly in the FIND action.

FIND BO IN BATCHES OF 2000
by johntalbott
Mon Mar 02, 2020 5:25 pm
Forum: General discussion and questions about Aware IM
Topic: Inline Edit Conundrum
Replies: 2
Views: 4540

Re: Inline Edit Conundrum

With code it's possible. It seems that it will be tricky to have a good UX.

What is the business use case driving this functionality? Maybe there is a different way to meet the need.
by johntalbott
Fri Feb 28, 2020 5:06 am
Forum: General discussion and questions about Aware IM
Topic: Customising the Grid
Replies: 8
Views: 15030

Re: Customising the Grid

PointsWell wrote:
johntalbott wrote:Query Init Script
config.groupable: = true,
Simples! Thanks John.

Is there a way to set the initial categories to make the grid load with a default grouping?
A single grouping column can be set up in the config tool. For more flexibility similar to the Kendo demo it can be done with js .
by johntalbott
Thu Feb 27, 2020 8:17 am
Forum: General discussion and questions about Aware IM
Topic: Customising the Grid
Replies: 8
Views: 15030

Re: Customising the Grid

Query Init Script
config.groupable: = true,