Search found 201 matches

by idpSteve
Fri Nov 29, 2019 6:36 am
Forum: General discussion and questions about Aware IM
Topic: Hide delete button on document widget
Replies: 9
Views: 11770

Re: Hide delete button on document widget

The | is unnecessary but won't break anything.

All it does is select elements whose title equals 'Remove' or starts with 'Remove-' similar to how a * or ^ works.

I copied it from some other code which is why the | was there.
by idpSteve
Wed Nov 27, 2019 6:41 am
Forum: General discussion and questions about Aware IM
Topic: Hide delete button on document widget
Replies: 9
Views: 11770

Re: Hide delete button on document widget

Try this in the render script:

$("[title|='Remove']").hide();
by idpSteve
Tue Nov 26, 2019 10:27 am
Forum: General discussion and questions about Aware IM
Topic: Recording Line numbers in Header /Detail BO
Replies: 10
Views: 11250

Re: Recording Line numbers in Header /Detail BO

Hi Mark. Would that not have a bigger overhead than just using the built in increment function? EDIT: This would also cause an issue if a record is deleted, you might end up with duplicate line numbers in that case as the COUNT wouldn't return the number of the last record. You could also do this wi...
by idpSteve
Tue Nov 26, 2019 5:28 am
Forum: General discussion and questions about Aware IM
Topic: Recording Line numbers in Header /Detail BO
Replies: 10
Views: 11250

Re: Recording Line numbers in Header /Detail BO

You can add a number attribute to your object, and in the attribute properties menu under the 'Number-specific' options there is 'Auto-increment'.

I think this might work for your purpose?
by idpSteve
Tue Nov 26, 2019 5:23 am
Forum: General discussion and questions about Aware IM
Topic: Slider Not Scrolling the Record
Replies: 1
Views: 3195

Re: Slider Not Scrolling the Record

Check on that form how many records per page you're showing (probably 5 records per page) and also check that you have the 'Show paging bar' check box ticked. If you don't want this pagination you'd need to increase the number of records per page.
by idpSteve
Mon Nov 25, 2019 6:04 am
Forum: Wish List
Topic: [FR] Push notifications- do something when they are clicked
Replies: 0
Views: 7857

[FR] Push notifications- do something when they are clicked

Hi all. It would be great if we could have some power over what happens when a push notification is clicked. With most mobile apps, WhatsApp is a good example, when you click on a notification for a new message, the new message is opened, not just WhatsApp home screen. If there is already a work aro...
by idpSteve
Mon Nov 18, 2019 4:44 am
Forum: Problem reports
Topic: Android mobile keyboard broken
Replies: 5
Views: 9769

Re: Android mobile keyboard broken

Hi Jaymer.

I did find and pass on a solution to this to Vlad, and it was fixed.

From what I recall the resolution was removing class "k-splitter" from div "aw_main_splitter" for me. Not sure if the Aware team changed what was in class k-splitter, or if they just removed it too.
by idpSteve
Fri Nov 15, 2019 2:04 am
Forum: Problem reports
Topic: Import doesn't work properly after upgrading 7.0 to 8. 4
Replies: 6
Views: 10050

Re: Import doesn't work properly after upgrading 7.0 to 8. 4

Works fine for me too.

Can I suggest that you open your .csv in notepad or something similar and check that excel or whatever other program might have been used to open your .csv didn't change the commas to semicolons or another delimiter?
by idpSteve
Wed Oct 30, 2019 7:17 am
Forum: General discussion and questions about Aware IM
Topic: Platform support > Phones > doesn't work for Android
Replies: 9
Views: 11280

Re: Platform support > Phones > doesn't work for Android

I think what Jaymer was saying is to use a browser's built in function to request the desktop version of the site. This is something I quite often used for things like getting WhatsApp web in a phone browser. Issue with this is how to get a user to do it, as well as there is no "Request desktop vers...
by idpSteve
Wed Oct 23, 2019 6:34 am
Forum: General discussion and questions about Aware IM
Topic: Syntax for modeless window from JavaScript??
Replies: 8
Views: 12121

Re: Syntax for modeless window from JavaScript??

Ok, so it seems I got something to work.. Not quite how I want but it will do for now. I've now used html codes for { and }. These are { = { and } = } . I can then use the modal output syntax directly from my custom query. Here's what it looks like: AwareApp.startProcess2('Process_name','O...
by idpSteve
Wed Oct 23, 2019 5:42 am
Forum: General discussion and questions about Aware IM
Topic: Syntax for modeless window from JavaScript??
Replies: 8
Views: 12121

Re: Syntax for modeless window from JavaScript??

Create an AwareIM Process that calls EXEC_SCRIPT (example below calls javascript function AwareApp.startProcess2 passing the ID of an object in Context) EXEC_SCRIPT 'AwareApp.startProcess2(`Person_View`,`Person`,'+AS_STRING(Person.ID)+',{modeless: true, position: {top: 100, right: 100 }}); ' Then a...
by idpSteve
Tue Oct 22, 2019 6:54 am
Forum: General discussion and questions about Aware IM
Topic: Syntax for modeless window from JavaScript??
Replies: 8
Views: 12121

Re: Syntax for modeless window from JavaScript??

I would never have thought of that, thanks! I will let you know if I run into any trouble.

+1000 if it works ;)

One more thing, since this is a day of issue resolution, I presume modeless window isn't possible for ENTER NEW actions?
by idpSteve
Mon Oct 21, 2019 6:18 am
Forum: General discussion and questions about Aware IM
Topic: Syntax for modeless window from JavaScript??
Replies: 8
Views: 12121

Re: Syntax for modeless window from JavaScript??

Hi All. Does anyone know if there is a way to use this in a custom query template? I want a button to open a modal window, but using this syntax gives me an error "modeless: true, position: {top: 100} is not a valid attribute name" or whatever the message is when you put something that isn't an attr...
by idpSteve
Mon Sep 09, 2019 7:50 am
Forum: General discussion and questions about Aware IM
Topic: [RESOLVED BUILD 3011] Apps Look Different Depending on Browser.
Replies: 5
Views: 6017

Re: Apps Look Different Depending on Browser.

Haven't really come across this before, but I'd think you might be able to use "appearance" attributes to fix this.. https://css-tricks.com/almanac/properties/a/appearance/ I, unfortunately, can't explain much more as I don't know much about this, but I think it would be worth investigating. Good lu...
by idpSteve
Fri Sep 06, 2019 6:26 am
Forum: General discussion and questions about Aware IM
Topic: How many Communication driven apps can we host on 1 server?
Replies: 15
Views: 22099

Re: How many Communication driven apps can we host on 1 serv

Are you using port 9000 as 'Login port'? We had an issue where randomly users wouldn't be able to log in to our applications. While unable to log in scheduled processes ran as normal. Changing Login port from 9000 to 9003 fixed that. Maybe give it a try! ;) P.S. This started happening out of the blu...