Search found 201 matches

by idpSteve
Tue May 28, 2019 5:11 am
Forum: General discussion and questions about Aware IM
Topic: converting b64 to image
Replies: 4
Views: 6583

Re: converting b64 to image

AwareApp.startProcessWithInit('procName','main','objectName','image='+img);

This is the same way I get the b64 string, which works for that!
by idpSteve
Mon May 27, 2019 2:01 pm
Forum: General discussion and questions about Aware IM
Topic: converting b64 to image
Replies: 4
Views: 6583

converting b64 to image

Hi all. Hoping someone can help! I'm looking to take a b64 image data string (eg. data:image/png;base64,.......) and convert it to an image in AwareIM. I've tried creating the image in javascript: var img = document.createElement("img"); img.src="data:image/png;base64,......."; and pass this to Awar...
by idpSteve
Thu May 09, 2019 5:33 am
Forum: General discussion and questions about Aware IM
Topic: how to get any BO data value in custom javascript/render
Replies: 7
Views: 9788

Re: how to get any BO data value in custom javascript/render

Only way I know to do this would be have a proc saying FIND mycustomBO WHERE (mycustonBO.ID='23') INSERT mycustomBO IN LoggedInRegularUser.ps_mycustomBO then <<LoggedInRegularUser.ps_mycustomBO.Column2>> If you have the object in context there might be some way, but I haven't found it.. It will be i...
by idpSteve
Tue Mar 05, 2019 10:31 am
Forum: General discussion and questions about Aware IM
Topic: CHARS_FROM_LEFT issue?
Replies: 4
Views: 6787

Re: CHARS_FROM_LEFT issue?

I second that. Having more than 3 'ELSE IF' statements seems not to work most of the time.. Separating into a few processes/rules that will do the same thing is much more reliable.
by idpSteve
Fri Mar 01, 2019 8:39 am
Forum: General discussion and questions about Aware IM
Topic: Export and Import
Replies: 5
Views: 8030

Re: Export and Import

What database are you using? I generally get a SQL guy at the office to sort this out for me,. If you use MS SQL he can probably assist.
by idpSteve
Fri Feb 15, 2019 9:46 am
Forum: General discussion and questions about Aware IM
Topic: Setting Focus on Filter when Query is Run
Replies: 7
Views: 8873

Re: Setting Focus on Filter when Query is Run

Try add this to the render script:

$("k-input:first").focus();

Let me know if it works :)

EDIT: The render script of the query :P
by idpSteve
Thu Feb 07, 2019 7:23 am
Forum: Problem reports
Topic: Import from CSV from a process - Dates & Other Issues
Replies: 3
Views: 6216

Re: Import from CSV from a process

I've had some similar issues before. What I do now (not ideal but it works) is I import everything into a temp object as plain text attributes, and then I create the actual objects from that. I'll have a UserImport object, with DoB being plain text, then something like this: CREATE User WITH User.Do...
by idpSteve
Mon Jan 28, 2019 8:49 am
Forum: General discussion and questions about Aware IM
Topic: Real-Time Data Updates via WebSockets
Replies: 3
Views: 6207

Re: Real-Time Data Updates via WebSockets

This is really cool. Well done :)
by idpSteve
Mon Jan 07, 2019 12:38 pm
Forum: General discussion and questions about Aware IM
Topic: License Question ..
Replies: 2
Views: 3748

Re: License Question ..

From what I understand only staff count as users. When last I asked a similar question regarding a school they said parents and pupils didn't count towards user numbers, only staff at the school. I think this per-user cost only applies if your client (hospital/clinic/etc.) is hosting their own appli...
by idpSteve
Mon Jan 07, 2019 7:28 am
Forum: General discussion and questions about Aware IM
Topic: Popups on mobile broke? Wayyyy narrow popup form. Unusable
Replies: 12
Views: 13650

Re: Popups on mobile broke? Wayyyy narrow popup form. Unusa

You can set the form width, I use 300px or 350px. That's the only thing that works for me. Issue is obviously user phone size.
by idpSteve
Fri Dec 21, 2018 5:20 am
Forum: General discussion and questions about Aware IM
Topic: Mobile - Query and HTML do not mix on Visual Perspective
Replies: 1
Views: 2755

Re: Mobile - Query and HTML do not mix on Visual Perspective

I have some mobile visual perspectives with html buttons in panels that run queries. Results of these queries display in a blank panel below the buttons. This works for me in V8.1 and V8.2.

I've just added one of my queries to the blank panel (V8.1) and it still works fine for me..
by idpSteve
Tue Dec 11, 2018 4:33 am
Forum: General discussion and questions about Aware IM
Topic: Is there a way to Show/hide an attribute on a condition?
Replies: 16
Views: 22534

Re: Is there a way to Show/hide an attribute on a condition?

Ok, this makes sense. Thanks.

In my case a user can see the data in the hidden fields, or change it, simply by selecting something different from a dropdown. It isn't something confidential or secret, so it isn't an issue. I can see how this is a problem to some. Thanks for explaining.
by idpSteve
Mon Dec 10, 2018 12:28 pm
Forum: General discussion and questions about Aware IM
Topic: Is there a way to Show/hide an attribute on a condition?
Replies: 16
Views: 22534

Re: Is there a way to Show/hide an attribute on a condition?

Interesting.. @PointsWell : Would having separators then be less 'safe' than showing fields on a form and just having a user ignore them? I'm not sure if you're saying someone would be able to add data to a field hidden in a separator, or if you're saying using a separator is an added risk that does...
by idpSteve
Mon Dec 10, 2018 5:10 am
Forum: General discussion and questions about Aware IM
Topic: Is there a way to Show/hide an attribute on a condition?
Replies: 16
Views: 22534

Re: Is there a way to Show/hide an attribute on a condition?

Using separators works fine for me, it's not a lot of extra work and is very responsive.