Search found 230 matches

by joben
Fri Nov 24, 2023 12:29 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED]Set attr from another BO in form without using shortcut
Replies: 2
Views: 2718

Re: Set attr from another BO in form without using shortcut

This is if you don't have references between the BOs at all: Update rule in BO1. Dynamic. If BO1.Idnumber WAS CHANGED Then FIND BO2 WHERE (BO2.Idnumber=BO1.Idnumber) BO1.Name=BO2.Name If you do have an established reference between BO1 and BO2: Update rule in BO1. B01.Name=B01.B02.Name (BO2 is the n...
by joben
Mon Oct 30, 2023 1:53 pm
Forum: General discussion and questions about Aware IM
Topic: Hiding specific tabs in multi-attribute cells inside forms, easier way to do it?
Replies: 1
Views: 19550

Hiding specific tabs in multi-attribute cells inside forms, easier way to do it?

forms1.png Lets say I want to hide one of the tabs in a so called "multi-attribute cell" (the red one) based on a yes/no field in SystemSettings. If it was a form section (blue tabs), this would be piece of cake. I would just have to use "Not present when" and point it to a SystemSettings attribute...
by joben
Thu Oct 19, 2023 9:00 am
Forum: General discussion and questions about Aware IM
Topic: Change icon color on form buttons?
Replies: 11
Views: 31597

Re: Change icon color on form buttons?

If your custom CSS doesn't appear in the editor, it could be because you typed something wrong, or the CSS file is not loading for some reason. Try to use CTRL+SHIFT+R to force a reload and emptying of cache. But then it is also a matter of specificity which rules will take precedence. For instance,...
by joben
Thu Oct 19, 2023 6:34 am
Forum: General discussion and questions about Aware IM
Topic: Change icon color on form buttons?
Replies: 11
Views: 31597

Re: Change icon color on form buttons?

lueu wrote: Wed Oct 18, 2023 11:22 am Also it seems like the changes i do on the icons don't stick.. :cry:
This is probably only true for the save button (and possibly the close button).
I have never had to edit these so I don't have a solution unfortunately.
You could report it as a bug in the problem reports forum.
by joben
Wed Oct 18, 2023 11:17 am
Forum: General discussion and questions about Aware IM
Topic: Change icon color on form buttons?
Replies: 11
Views: 31597

Re: Change icon color on form buttons?

Opacity is the culprit. opacity.png If you only want to change one button icon, you can just give the button a class in the Operation window like "coolButton". Then just put this in your CSS file: .coolButton .k-sprite{opacity:1;} If you want to change every form button icon, it would look something...
by joben
Wed Oct 18, 2023 9:17 am
Forum: General discussion and questions about Aware IM
Topic: Change icon color on form buttons?
Replies: 11
Views: 31597

Re: Change icon color on form buttons?

It works out of the box.

Make sure your Operation window is large enough so some options are not hidden for you.
You can resize the window if you don't see the same thing as below:
color.png
color.png (128.39 KiB) Viewed 31595 times
by joben
Tue Oct 17, 2023 1:38 pm
Forum: General discussion and questions about Aware IM
Topic: Remove "No records available" msg
Replies: 15
Views: 130344

Re: Remove "No records available" msg

Thanks hpl123, it works like a charm!

This will be very useful to us!
by joben
Tue Oct 17, 2023 7:15 am
Forum: General discussion and questions about Aware IM
Topic: Remove "No records available" msg
Replies: 15
Views: 130344

Re: Remove "No records available" msg

This script still works i.e we can still access that part of Kendo via scripts, the thing is just to figure out the script to change the actual text. I looked at the Kendo UI reference for this briefly and you may have to access the template to be able to do this change: https://docs.telerik.com/ke...
by joben
Mon Oct 16, 2023 6:33 am
Forum: General discussion and questions about Aware IM
Topic: Remove "No records available" msg
Replies: 15
Views: 130344

Re: Remove "No records available" msg

config.messages.noRecords= "abc"; Try some variations on the script and also possibly put it as a render script. This has worked before i.e we can change it via scripts, I don't use it any more and can't remember how unfortunately. No luck with that so far. There is an script that sort of works: se...
by joben
Fri Oct 13, 2023 1:27 pm
Forum: General discussion and questions about Aware IM
Topic: Remove "No records available" msg
Replies: 15
Views: 130344

Re: Remove "No records available" msg

Any plans to let us modify the message content? I only have the option to enable or disable the message.

I tried to write an init script, but it doesn't work:
config.messages.noRecords= "abc";
by joben
Mon Sep 11, 2023 7:20 am
Forum: General discussion and questions about Aware IM
Topic: FIND ALL, SEARCH_COUNT seems to override READ PROTECT Filter
Replies: 13
Views: 67155

Re: FIND ALL, SEARCH_COUNT seems to override READ PROTECT Filter

Bumping an old thread here, this is still a problem. Example: This query contains 9 records, and all of them are read protected for the user currently viewing it. No rows are returned, which is good. Yet it still displays a count of "9". readprotect1.png readprotect2.png This leaves me with 4 option...
by joben
Tue Aug 08, 2023 7:14 am
Forum: General discussion and questions about Aware IM
Topic: Incrementing Value in an Attribute
Replies: 2
Views: 13623

Re: Incrementing Value in an Attribute

Just guessing here, but could it be that dot (.) should be a decimal (,) ?

Like:

Code: Select all

ENTER NEW Charges WITH Charges.ChargeCount=(ThisCharges.ChargeCount+0,1),Charges.parent_CaseMaster=ThisCharges.parent_CaseMaster USING Main
by joben
Thu Jul 20, 2023 3:57 pm
Forum: General discussion and questions about Aware IM
Topic: Import and import template issues
Replies: 4
Views: 7359

Re: Import and import template issues

Any hints on where I am going wrong? Also, it seems to me that import will never be user friendly, the form is too complicated with too many choises. How are they supposed to know what opitons to tick, or what about the encoding, how is the user supposed to know what to choose? My opinion is that y...
by joben
Tue Jul 18, 2023 5:31 pm
Forum: General discussion and questions about Aware IM
Topic: Problem Displaying a URL in a new tab
Replies: 5
Views: 13273

Re: Problem Displaying a URL in a new tab

I’m not knowingly using an iframe - unless AIM builds on in the background. It’s just the built in DISPLAY URL urlstring NEW TAB ‘tab name ’ But thanks for the response You could try using your own application URL as urlstring to troubleshoot and see if it is CSP (Content Security Policy) that is b...