Search found 2599 matches

by hpl123
Sun Apr 07, 2024 12:42 am
Forum: General discussion and questions about Aware IM
Topic: Cannot color Yes/No Button Group like I want
Replies: 3
Views: 165

Re: Cannot color Yes/No Button Group like I want

I am fairly sure this is possible using only CSS but it will not be an easy or clean fix. The thing is, you have to find a way to uniquely select each button or groups of buttons and I would recommend you dig into the CSS documentation on selectors. Your best bet is using the label i.e use the uniq...
by hpl123
Sat Apr 06, 2024 8:35 pm
Forum: General discussion and questions about Aware IM
Topic: Cannot color Yes/No Button Group like I want
Replies: 3
Views: 165

Re: Cannot color Yes/No Button Group like I want

I am fairly sure this is possible using only CSS but it will not be an easy or clean fix. The thing is, you have to find a way to uniquely select each button or groups of buttons and I would recommend you dig into the CSS documentation on selectors. Your best bet is using the label i.e use the uniqu...
by hpl123
Wed Apr 03, 2024 7:40 am
Forum: General discussion and questions about Aware IM
Topic: HIPAA?
Replies: 0
Views: 62

HIPAA?

Hi all,
I am looking into a project where I need the solution to be HIPAA compliant, has anyone done this with an Aware app and infrastructure?

Thanks
by hpl123
Sat Mar 30, 2024 3:03 am
Forum: General discussion and questions about Aware IM
Topic: Date control on form pop up?
Replies: 0
Views: 87

Date control on form pop up?

Hi all, I have a date attribute/control on a mobile form and to open the date select popup, the user has to press the tiny little calendar icon to the far right in the date attribute and it is very small and difficult to press on a mobile and it would be a lot better if it popped up when pressing an...
by hpl123
Fri Mar 29, 2024 7:03 pm
Forum: Tips and Tricks
Topic: Horizontal (form) slider 100% width
Replies: 0
Views: 94

Horizontal (form) slider 100% width

Hi all,
Here is how to set the slider on forms to take up 100% width:

Code: Select all

.k-slider-horizontal
        {
width: 100%;
        }
        
by hpl123
Wed Mar 27, 2024 10:04 am
Forum: General discussion and questions about Aware IM
Topic: HTML in a PDF Report
Replies: 20
Views: 945

Re: HTML in a PDF Report

ok, thx that worked - forgot about that problems now: 1) sucks that you have to use inline 'styles' - tried class and it doesn't pick it up. 2) cant get the text tight... here is the html in a browser Screenshot 2024-03-26 at 11.54.38 PM.png and shown in chrome explorer Screenshot 2024-03-26 at 11....
by hpl123
Tue Mar 26, 2024 8:09 pm
Forum: Tips and Tricks
Topic: Month calendar, no of events
Replies: 0
Views: 692

Month calendar, no of events

Hi all, Here is a initialization script for the month calendar that sets the number of events visible in the month calendar. The default is 2 after which the remaining events are hidden and a button with 3 dots on it appears. Set this to change the default: config.eventsPerDay=5 Not sure if this scr...
by hpl123
Wed Mar 20, 2024 10:28 am
Forum: General discussion and questions about Aware IM
Topic: Config tool AI?
Replies: 6
Views: 12077

Re: Config tool AI?

Yeah, this is the future but how could it work in AwareIM? Not sure what exactly can be done but AI is good at getting information and doing small tasks etc. and also in helping answer simple questions e.g related to AwareIM features, functions or whatever. AI could also be used for non Aware relate...
by hpl123
Tue Mar 19, 2024 3:02 pm
Forum: General discussion and questions about Aware IM
Topic: Config tool AI?
Replies: 6
Views: 12077

Config tool AI?

Why not :). Webinar that can spark some ideas possibly: https://s608.t.en25.com/e/es?s=608&e=76 ... 36&elqat=1
by hpl123
Fri Mar 15, 2024 8:48 pm
Forum: General discussion and questions about Aware IM
Topic: Browser refresh
Replies: 3
Views: 353

Re: Browser refresh

This is a question about the consequences of a browser refresh - in most browsers this is done by pressing F5 and/or Ctrl-R, sometimes also referred to as 'Reload'. I noticed from the log files (Tomcat log and testing log) that the browser refresh results in fully new login request. It seems that t...
by hpl123
Tue Mar 12, 2024 5:23 pm
Forum: General discussion and questions about Aware IM
Topic: HTML in a PDF Report
Replies: 20
Views: 945

Re: HTML in a PDF Report

IF I remember correctly, this has been an issue for years and has something to do with how Aware integrates the HTML into the report. I don´t think there is a workaround (I could be wrong) other than creating a picture programmatically (that has the html text looking good etc.) and then showing that...
by hpl123
Fri Feb 23, 2024 6:35 pm
Forum: General discussion and questions about Aware IM
Topic: NullPointerException error after upgrade to V9 (m_application is null)
Replies: 4
Views: 571

Re: NullPointerException error after upgrade to V9 (m_application is null)

Addition to the previous post: As usual, after the upgrade I put back the BASServer.props file from the previous install (in my case V8.8 ). I compared that file to the default file that was included with the V9 install and found two changes. I then changed these lines in the BASServer.props file. ...
by hpl123
Thu Feb 22, 2024 5:54 pm
Forum: General discussion and questions about Aware IM
Topic: Text alignment when using Number as Attribute
Replies: 7
Views: 719

Re: Text alignment when using Number as Attribute

Are you sure its actually the number attribute and not the label i.e try changing label to a shorter text and see if you experience the same problems?
by hpl123
Thu Feb 22, 2024 5:47 pm
Forum: Problem reports
Topic: V9 prevent overflow menu in form grid panel operations
Replies: 2
Views: 395

Re: V9 prevent overflow menu in form grid panel operations

I have had similar issues before (I am not on v9 yet so haven't experienced this) and the problem I had before was related to margin/padding on the left/right side of the parent container divs etc. and that margin/padding together with the width you have set for the buttons means the total width "us...