Search found 197 matches

by UnionSystems
Thu Oct 26, 2023 2:09 am
Forum: General discussion and questions about Aware IM
Topic: Set attribute based on when the user logges in?
Replies: 16
Views: 79407

Re: Set attribute based on when the user logges in?

I do it by having a "When LoginNotification is received" rule with the following : IF LoginNotification.LoginName<>'BAS_Guest@@' AND EXISTS RegularUser WHERE (RegularUser.LoginName=LoginNotification.LoginName ) THEN FIND RegularUser WHERE (RegularUser.LoginName=LoginNotification.LoginName ) TAKE BES...
by UnionSystems
Tue Oct 10, 2023 10:50 am
Forum: General discussion and questions about Aware IM
Topic: Moving Panel Operations within a Toolbar Menu
Replies: 7
Views: 22112

Re: Moving Panel Operations within a Toolbar Menu

The other way to resolve this is to reduce the size of your fonts inside AwareIM. There is an option for this in one of the menus.
by UnionSystems
Mon Oct 09, 2023 7:16 am
Forum: General discussion and questions about Aware IM
Topic: Set attribute based on when the user logges in?
Replies: 16
Views: 79407

Re: Set attribute based on when the user logges in?

Another option available in AwareIM to record login activity is Login Notification described at https://www.awareim.com/dokuwiki/doku.p ... gin_events

This also enables you to record login failures as well as when a user logs out.
by UnionSystems
Sat May 13, 2023 11:50 am
Forum: Tips and Tricks
Topic: Removing ugly titles on Query filter input fields
Replies: 4
Views: 25526

Re: Removing ugly titles on Query filter input fields

The following script might remove titles. I am not able to test this at the moment (on holidays....just passing some time on a train). $('.k-filtercell :input').removeAttr('title'); And Jaymer says its not actually a problem for him so the original issue might be something specific with my setup of ...
by UnionSystems
Fri Dec 30, 2022 8:51 pm
Forum: Tips and Tricks
Topic: Removing ugly titles on Query filter input fields
Replies: 4
Views: 25526

Removing ugly titles on Query filter input fields

Currently on 8.7 ugly HTML is used for the title of Query filter fields, this text displays when you hover over the filter input field. So for example if you have an attribute named "Number" the title text is "<div style='text-align: left'>Number</div>" and this is displayed to the user when they ho...
by UnionSystems
Tue Sep 13, 2022 6:01 am
Forum: General discussion and questions about Aware IM
Topic: Is it time for an AwareIM Conference yet?
Replies: 22
Views: 28559

Re: Is it time for an AwareIM Conference yet?

Our vote :-)

1. Australia
2. Thailand
99. Florida
by UnionSystems
Tue Jun 07, 2022 8:18 pm
Forum: General discussion and questions about Aware IM
Topic: Call process from Query Column Value
Replies: 6
Views: 9387

Re: Call process from Query Column Value

In the CSS class “usGridLink” we use in our example we have

Code: Select all

cursor:pointer;
it makes the hovering cursor display as a hand.
by UnionSystems
Mon Jun 06, 2022 10:04 pm
Forum: General discussion and questions about Aware IM
Topic: Call process from Query Column Value
Replies: 6
Views: 9387

Re: Call process from Query Column Value

You can also use the following Initialization Script in a Query. This updates the Kendo template for the nominated columns. In this case column 0. If you want to update other columns repeat below with a different number in config.columns[0].template. /* Workplace Link */ config.columns[0].template =...
by UnionSystems
Sun Apr 24, 2022 9:49 pm
Forum: Problem reports
Topic: Widget Tree Header bug in v.8.7
Replies: 2
Views: 17035

Re: Widget Tree Header bug in v.8.7

Something similar is happening in filter fields on query grids. <input data-bind="value: value" aria-label="<div style='text-align: left'>Title</div>" title="<div style='text-align: left'>Title</div>" data-role="autocomplete" data-text-field="Title" data-filter="startswith" data-delay="200" data-min...
by UnionSystems
Thu Apr 14, 2022 9:10 am
Forum: General discussion and questions about Aware IM
Topic: Visibility of Date & Time from External MSSQL BO
Replies: 1
Views: 4928

Re: Visibility of Date & Time from External MSSQL BO

Hi Mark, I just got a Facebook Memory come up of the conference in Providence Rhode Island, happy times! Regards the Date Time issue in SQL, solution might be to format the date or time column to match the format defined in the AwareIM definition of the attribute. In mySql that is something like DAT...
by UnionSystems
Tue Oct 12, 2021 11:46 am
Forum: General discussion and questions about Aware IM
Topic: Session Timeout after REST Call [Solved]
Replies: 5
Views: 11908

Re: Session Timeout after REST Call

We’ve continued to use what I describe at
viewtopic.php?f=1&t=10570&p=51512#p51512

Works perfectly for us.
by UnionSystems
Wed Oct 06, 2021 11:40 am
Forum: General discussion and questions about Aware IM
Topic: Rule Debugger
Replies: 9
Views: 11007

Re: Rule Debugger

A wonderful addition.
by UnionSystems
Fri Sep 24, 2021 4:11 am
Forum: General discussion and questions about Aware IM
Topic: Width of Question
Replies: 9
Views: 10725

Re: Width of Question

I agree wih Bruce the addition of some options to DISPLAY MESSAGE, DISPLAY QUESTION and REPORT ERROR would be nice. Until that happens we embed the script below in the actual action text. This works for all 3 actions. <script> /* Title Icon, Text and Width */ $('#aw-msgbox_wnd_title').html('<i class...
by UnionSystems
Thu Aug 12, 2021 7:39 pm
Forum: General discussion and questions about Aware IM
Topic: Phone Number Mask on Query
Replies: 9
Views: 17561

Re: Phone Number Mask on Query

Here is an example that adds HTML into the result. Again this is all just presented in the Query so the column filters are still searching the original plain string data. It does get a bit messy...probably best to use javascript functions to construct this. Anyway this Query > Properties > Scripts >...
by UnionSystems
Thu Aug 12, 2021 7:41 am
Forum: General discussion and questions about Aware IM
Topic: Phone Number Mask on Query
Replies: 9
Views: 17561

Re: Phone Number Mask on Query

I've worked out how to do this in an AwareIM Query "Initialization script". The example below is for a Query that has 3 columns of phone numbers that are stored as strings with no spaces. phoneFormat.png This is the code if you want to copy it. config.columns[13].columns[0].template = '#: (PhoneMobi...