Search found 619 matches

by johntalbott
Fri Mar 19, 2021 3:46 am
Forum: General discussion and questions about Aware IM
Topic: My Startup.html file is getting cluttered. Shouldn't there be a better way to do this?
Replies: 10
Views: 5810

Re: My Startup.html file is getting cluttered. Shouldn't there be a better way to do this?

If you want to use custom Javascript then you should put it in this folder: AwareIM/Tomcat/webapps/AwareIM/Custom/JS/BusinessSpaceName If you want to use custom CSS then you should put it in this folder: AwareIM/Tomcat/webapps/AwareIM/Custom/CSS/BusinessSpaceName Aware IM will automatically pick up...
by johntalbott
Thu Mar 18, 2021 3:17 am
Forum: General discussion and questions about Aware IM
Topic: My Startup.html file is getting cluttered. Shouldn't there be a better way to do this?
Replies: 10
Views: 5810

Re: My Startup.html file is getting cluttered. Shouldn't there be a better way to do this?

Ideally we should have a BS specific solution for this and I intend to try to do this myself using custom JS IF possible (not sure it can be done). The way I thought about doing it is picking up BS name as part of a startup.html function and then load relevant stuff for each app. This is the approa...
by johntalbott
Tue Mar 09, 2021 6:18 am
Forum: General discussion and questions about Aware IM
Topic: Develop a court reservation app
Replies: 2
Views: 2396

Re: Develop a court reservation app

Any of the functionality you specifically asked about can be implemented in AwareIM. Based on the few specifications listed it "appears" simple. A couple of thoughts ... 1. My guess is that there is a lot of additional functionality that will be needed once you get into it. 2. The challenge with any...
by johntalbott
Thu Jan 28, 2021 2:12 am
Forum: General discussion and questions about Aware IM
Topic: Scaling up/out in Aware? Best practises
Replies: 10
Views: 8732

Re: Scaling up/out in Aware? Best practises

Talking to Vlad and isn´t as easy as this (the Tomcat thread/queue things) as there are other things involved e.g DB transactions and things i.e it is complex. It would be great if there were some way, tools etc. to actually test Aware app and infrastructure performance. Then we could look at OK fo...
by johntalbott
Mon Dec 07, 2020 8:24 pm
Forum: General discussion and questions about Aware IM
Topic: Layer layouts?
Replies: 24
Views: 15711

Re: Layer layouts?

Here is an example of nested layouts. The "parent" layout in green has 3 content panels. Left panel - no content - right spacer Center panel - container for the child layout Right panel - no content - left spacer The "child" layout in red has 3 content panels Left panel - container for main form Cen...
by johntalbott
Wed Oct 14, 2020 11:47 pm
Forum: Tips and Tricks
Topic: Brackets IDE for HTML/JS/PHP
Replies: 4
Views: 21007

Re: Brackets IDE for HTML/JS/PHP

Yes. It's very good and very popular which means tons of extensions. It auto-updates with a new build from MSFT about once a month.
by johntalbott
Wed Oct 14, 2020 2:12 pm
Forum: Tips and Tricks
Topic: Brackets IDE for HTML/JS/PHP
Replies: 4
Views: 21007

Re: Brackets IDE for HTML/JS/PHP

by johntalbott
Thu Aug 27, 2020 10:48 pm
Forum: General discussion and questions about Aware IM
Topic: Grid rows not filling the screen...
Replies: 14
Views: 14026

Re: Grid rows not filling the screen...

You can adjust user selected page sizes in the Init Script of the query. Example:

config.pageable.pageSizes = [10, 25, 50, 100, 500, "all"]
by johntalbott
Mon May 04, 2020 2:28 pm
Forum: General discussion and questions about Aware IM
Topic: [broken in 8.6] JS To Select First Row
Replies: 9
Views: 11719

Re: [Solved-with Conditions] JS To Select First Row

Some clarification on the code ... The render script runs once when the grid is initially rendered. It won't run again unless the container of the grid is refreshed. e.g. refreshing your browser. Having said that, when the render script runs the single time, the JS code "sets up" an event handler fo...
by johntalbott
Wed Apr 29, 2020 1:00 pm
Forum: General discussion and questions about Aware IM
Topic: [broken in 8.6] JS To Select First Row
Replies: 9
Views: 11719

Re: JS To Select First Row

Code: Select all

widget.bind("dataBound", function(e){
      const grid = e.sender;
     grid.select("tr:eq(0)");
     grid.select().click();
})
by johntalbott
Wed Apr 29, 2020 5:58 am
Forum: General discussion and questions about Aware IM
Topic: [broken in 8.6] JS To Select First Row
Replies: 9
Views: 11719

Re: JS To Select First Row

In the dataBound event of the Child grid you can do this.

In Render Script of child grid

Code: Select all

widget.bind("dataBound", function(e){
      const grid = e.sender
     grid.select("tr:eq(0)");
})
by johntalbott
Wed Apr 15, 2020 5:13 am
Forum: General discussion and questions about Aware IM
Topic: better filtering for kendogrids
Replies: 8
Views: 12288

Re: better filtering for kendogrids

widget.columns[2].filterable.multi = true
by johntalbott
Wed Apr 01, 2020 6:17 am
Forum: General discussion and questions about Aware IM
Topic: [PITA] Excel Export (still)
Replies: 9
Views: 11244

Re: Excel Export (still)

You're right .. it shouldn't be BSV specific. I missed that it is working for you in CRM app.
by johntalbott
Wed Apr 01, 2020 3:44 am
Forum: General discussion and questions about Aware IM
Topic: [PITA] Excel Export (still)
Replies: 9
Views: 11244

Re: Excel Export (still)

Do you try the fix described in the Kendo article?