Search found 15 matches

by ORS61
Fri Apr 26, 2019 5:53 pm
Forum: General discussion and questions about Aware IM
Topic: Conditional Show in Custom Query
Replies: 1
Views: 2924

Re: Conditional Show in Custom Query

Syntax is like below;

Code: Select all

# if(data["myattribute"] != null) { #
<span style="color:red">{myattribute}</span>
# } #
by ORS61
Wed Aug 02, 2017 11:58 am
Forum: General discussion and questions about Aware IM
Topic: How to set kendo configuration globally?
Replies: 3
Views: 6790

Re: How to set kendo configuration globally?

johntalbott wrote:It's not exactly what you are looking for, but I suggest using your code in a global function in a custom JS file.
Thank you, great advice. At least I will modify attributes once.
by ORS61
Tue Aug 01, 2017 11:01 pm
Forum: General discussion and questions about Aware IM
Topic: How to set kendo configuration globally?
Replies: 3
Views: 6790

How to set kendo configuration globally?

I'm not sure if title describes it but what I want to achieve is like below; I want to change behavior of dropdown search and it's working if I add some code to initialization script of the attribute. //The minimum number of characters the user must type before a filter is performed. config.config.m...
by ORS61
Sat Mar 11, 2017 7:11 am
Forum: General discussion and questions about Aware IM
Topic: Phone Gap Examples
Replies: 11
Views: 23246

Re: Phone Gap Examples

mrbdrm wrote: 3- viewing PDF documents will not work.(thankfully there is a workaround)
@mrbdrm @support

Can you please share workaround for viewing pdf documents from mobile version.
by ORS61
Mon Dec 12, 2016 2:29 am
Forum: General discussion and questions about Aware IM
Topic: How to PICK from Custom Query?
Replies: 6
Views: 8555

Re: How to PICK from Custom Query?

You are right, I can not avoid "do you want to cancel current process" message. And this is not good for user experience.

So it's better live with Standard Query for PICK actions until @support add a built-in option or offers a solution how the add check boxes to Custom Queries for PICK.
by ORS61
Sat Dec 10, 2016 12:08 pm
Forum: General discussion and questions about Aware IM
Topic: How to PICK from Custom Query?
Replies: 6
Views: 8555

Re: How to PICK from Custom Query?

Thanks for the suggestion. My process is starting with pick action, so I can use DISPLAY action (just DISPLAY action in process) instead of PICK. Also to avoid "Cancel current process" popup, it will be better to use second process (actions after PICK in my original process) in displayed query. I'll...
by ORS61
Fri Dec 09, 2016 2:38 pm
Forum: General discussion and questions about Aware IM
Topic: How to PICK from Custom Query?
Replies: 6
Views: 8555

How to PICK from Custom Query?

I have a process starting with PICK action which works as expected with Standart Query. However, when using Custom Query there are no check boxes to pick a record. You can select row (highlight) but when click Continue nothing happens. I think without checkbox, system do not know the selected record...
by ORS61
Sat Nov 26, 2016 11:53 am
Forum: General discussion and questions about Aware IM
Topic: Wishlist: Refresh a Ref Attribute on a form (but not form)
Replies: 2
Views: 4156

Re: Wishlist: Refresh a Ref Attribute on a form (but not for

+1

In addition, it will be great to have auto-refresh settings for "HTML Cells" and "Form Tab Badges".
by ORS61
Thu Oct 20, 2016 1:40 pm
Forum: General discussion and questions about Aware IM
Topic: live chat assistance
Replies: 4
Views: 10763

Re: live chat assistance

I think you should paste it before </body> tag in startup.html page.
by ORS61
Thu Sep 29, 2016 2:14 pm
Forum: General discussion and questions about Aware IM
Topic: Can We Disable the Close?
Replies: 10
Views: 14649

Re: Can We Disable the Close?

Use this script to disable esc key. Paste it to bottom of startup.html file just before </body> This will disable esc key for your popups. I'm not an expert, it may have negative affects. <script> $(function () { kendo.ui.Window.fn._keydown = function (originalFn) { var KEY_ESC = 27; return function...
by ORS61
Thu Sep 29, 2016 10:44 am
Forum: General discussion and questions about Aware IM
Topic: Can We Disable the Close?
Replies: 10
Views: 14649

Re: Can We Disable the Close?

Add below code to render script of your form. This will hide all menu items in panel toolbox including close button.

$(".k-window-actions").css ("display", "none");
by ORS61
Wed Aug 31, 2016 7:09 pm
Forum: General discussion and questions about Aware IM
Topic: Custom Query - how to use attribute icons
Replies: 14
Views: 22894

Re: Custom Query - how to use attribute icons

You are welcome. But, thanks to mrbdrm. Now I can use conditions in custom queries like html cells.
by ORS61
Tue Aug 30, 2016 4:13 pm
Forum: General discussion and questions about Aware IM
Topic: Custom Query - how to use attribute icons
Replies: 14
Views: 22894

Re: Custom Query - how to use attribute icons

Also I want to know, if there is a simple solution. I'm achieving this by adding two extra attributes to the AppLog BO. Attributes: IconColor IconFontAwasome Business Rules: IconCalculation IF NEW If AppLog.Action='New' Then AppLog.IconFontAwasome='fa fa-plus' AppLog.IconColor='#256117' Icon Calcula...
by ORS61
Fri Jul 15, 2016 1:57 pm
Forum: General discussion and questions about Aware IM
Topic: Remove the close button from popup windows
Replies: 5
Views: 9834

Re: Remove the close button from popup windows

I've also tried to hide "close" button "using css with no success. Form css class is not related to that form part, so you can not chose which forms to hide . You can try the solution below to hide "Close" button; Open Form Menu : Advanced Add below code to the render Script $(".aw-form-buttons").cs...