Search found 7540 matches

by aware_support
Mon Jul 15, 2024 8:11 am
Forum: Problem reports
Topic: V9 - Application does not have an active window
Replies: 1
Views: 3488

Re: V9 - Application does not have an active window

Was there anything else there? What do you mean "nothing happened"? What exactly did they do? Can you please describe the whole thing in more detail?
by aware_support
Mon Jul 15, 2024 8:02 am
Forum: General discussion and questions about Aware IM
Topic: Grid sorting on TWO FIELDS. anyone figured this out?
Replies: 6
Views: 3817

Re: Grid sorting on TWO FIELDS. anyone figured this out?

Henrik is right - this has to be supported on the server and at the moment it is not. Unless, of course, you define a few Aware IM queries with multiple sorting and you switch between those.
by aware_support
Mon Jul 15, 2024 7:59 am
Forum: General discussion and questions about Aware IM
Topic: Huge TomcatConsole.log
Replies: 2
Views: 950

Re: Huge TomcatConsole.log

You can delete this file if you don't need the log
by aware_support
Thu Jun 27, 2024 4:47 am
Forum: General discussion and questions about Aware IM
Topic: How to have a default filter active?
Replies: 5
Views: 1266

Re: How to have a default filter active?

The buttons displayed by the filter should initially reflect the original query. Since the original query returns all issues the state of the Closed button should be selected. You cannot change it to unselected unless you change the query as well. Aware IM is not yet smart enough to analyze the quer...
by aware_support
Mon Jun 24, 2024 9:40 am
Forum: General discussion and questions about Aware IM
Topic: How to have a default filter active?
Replies: 5
Views: 1266

Re: How to have a default filter active?

You can give Value List filters a try if you can (these are new filters introduced in 9.0). These filters have an option whether to initially display as "selected" or not.
by aware_support
Wed Jun 19, 2024 2:14 am
Forum: General discussion and questions about Aware IM
Topic: Scheduler - improvements wishlist
Replies: 1
Views: 820

Re: Scheduler - improvements wishlist

You can easily schedule a process to run every 5 min and then the process itself could check if it is within the specified interval and if not, do nothing.
by aware_support
Wed Jun 19, 2024 2:11 am
Forum: General discussion and questions about Aware IM
Topic: Change color on buttons in Save changes? dialog box?
Replies: 2
Views: 926

Re: Change color on buttons in Save changes? dialog box?

This can be done by a script. We can write one for the cost of a support ticket. Please send us an email if interested.
by aware_support
Wed Jun 19, 2024 2:07 am
Forum: General discussion and questions about Aware IM
Topic: Query not as popup
Replies: 1
Views: 841

Re: Query not as popup

Somewhere you should have a button that starts the parent process - you should define the output there.
by aware_support
Fri Jun 14, 2024 2:07 am
Forum: General discussion and questions about Aware IM
Topic: Slide in menu stopped working Android
Replies: 3
Views: 1255

Re: Slide in menu stopped working Android

You may need to update to the latest
by aware_support
Wed Jun 12, 2024 8:24 am
Forum: General discussion and questions about Aware IM
Topic: Email issues on v9
Replies: 1
Views: 952

Re: Email issues on v9

The issue with outgoing email accounts was fixed in build 3264
by aware_support
Fri Jun 07, 2024 11:26 pm
Forum: General discussion and questions about Aware IM
Topic: REALLY need some help with Javascript
Replies: 5
Views: 1390

Re: REALLY need some help with Javascript

You cannot use synchronous calls to the server - they have to be asynchronous Just do this (this is called CLOSURE in JS): (note "widget" should be available to the callback function through a closure) var theVal = new AwareApp_GetAttributeValueAction ( "AA", 1, "TenantName", null, null, function (v...
by aware_support
Fri Jun 07, 2024 6:38 am
Forum: General discussion and questions about Aware IM
Topic: REALLY need some help with Javascript
Replies: 5
Views: 1390

Re: REALLY need some help with Javascript

This action only gets a value of one particular attribute only. This value is returned as a parameter to the callback function and it is named "value" (in bold below): var theVal = new AwareApp_GetAttributeValueAction ( "AA", 1, "TenantName", null, null, function ( value ) { // do something with val...
by aware_support
Wed May 29, 2024 9:48 am
Forum: General discussion and questions about Aware IM
Topic: New build 3263
Replies: 0
Views: 2170

New build 3263

This build includes a new type of filter that allows filtering using mulriple checkboxes.

https://www.awareim.com/dokuwiki/doku.p ... attributes
by aware_support
Fri May 03, 2024 12:23 am
Forum: General discussion and questions about Aware IM
Topic: Further improvements for grouped queries (build 3257)
Replies: 1
Views: 974

Further improvements for grouped queries (build 3257)

In the last couple of builds we have essentially rewritten the code that implements grouped queries. In the previous build we have added support for "server grouping", where grouping is performed on the server, rather than on the client as before. Since the client could only calculate group summarie...