Search found 197 matches
- 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: 135096
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...
- 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: 44131
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.
- 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: 135096
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.
This also enables you to record login failures as well as when a user logs out.
- Sat May 13, 2023 11:50 am
- Forum: Tips and Tricks
- Topic: Removing ugly titles on Query filter input fields
- Replies: 4
- Views: 52149
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 ...
- Fri Dec 30, 2022 8:51 pm
- Forum: Tips and Tricks
- Topic: Removing ugly titles on Query filter input fields
- Replies: 4
- Views: 52149
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...
- 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: 65702
Re: Is it time for an AwareIM Conference yet?
Our vote
1. Australia
2. Thailand
99. Florida
1. Australia
2. Thailand
99. Florida
- 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: 18219
Re: Call process from Query Column Value
In the CSS class “usGridLink” we use in our example we have it makes the hovering cursor display as a hand.
Code: Select all
cursor:pointer;
- 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: 18219
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 =...
- Sun Apr 24, 2022 9:49 pm
- Forum: Problem reports
- Topic: Widget Tree Header bug in v.8.7
- Replies: 2
- Views: 27582
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...
- 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: 9542
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...
- 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: 23061
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.
viewtopic.php?f=1&t=10570&p=51512#p51512
Works perfectly for us.
- Wed Oct 06, 2021 11:40 am
- Forum: General discussion and questions about Aware IM
- Topic: Rule Debugger
- Replies: 9
- Views: 21270
Re: Rule Debugger
A wonderful addition.
- Fri Sep 24, 2021 4:11 am
- Forum: General discussion and questions about Aware IM
- Topic: Width of Question
- Replies: 9
- Views: 19514
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...
- Thu Aug 12, 2021 7:39 pm
- Forum: General discussion and questions about Aware IM
- Topic: Phone Number Mask on Query
- Replies: 10
- Views: 33158
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 >...
- Thu Aug 12, 2021 7:41 am
- Forum: General discussion and questions about Aware IM
- Topic: Phone Number Mask on Query
- Replies: 10
- Views: 33158
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...