Search found 201 matches

by idpSteve
Sun Dec 09, 2018 10:40 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?

Try this bsv and see if it is what you want..

You can remove the separator look with some javascript and make it look like regular attributes on a form. If this suits your needs I can help with that. Let me know..
by idpSteve
Sun Dec 09, 2018 10:22 am
Forum: General discussion and questions about Aware IM
Topic: Phonegap anyone? Or nativescript support?
Replies: 50
Views: 98718

Re: Phonegap anyone? Or nativescript support?

Hi Jon. Do you mean Dart/Flutter? Is Dash something different? I've looked into flutter and I think if you're doing something like that then it might be best to go with React, which has been around for a lot longer.. Just my 0.02 Perhaps give this a read: https://hackernoon.com/react-native-vs-flutt...
by idpSteve
Fri Dec 07, 2018 1:37 pm
Forum: General discussion and questions about Aware IM
Topic: Phonegap anyone? Or nativescript support?
Replies: 50
Views: 98718

Re: Phonegap anyone? Or nativescript support?

Jaymer wrote:I'd love to see a course on this at the conference
+1000000
by idpSteve
Fri Dec 07, 2018 5:30 am
Forum: General discussion and questions about Aware IM
Topic: Phonegap anyone? Or nativescript support?
Replies: 50
Views: 98718

Re: Phonegap anyone? Or nativescript support?

@JonP We build apps using phonegap. There are indeed issues, but most are manageable. Phonegap is still a fancy shell, based around chromium browser, but a lot of the cordova plugins are cool. I haven't accessed contacts before, here is where I'd start: https://cordova.apache.org/docs/en/latest/refe...
by idpSteve
Wed Dec 05, 2018 11:34 am
Forum: General discussion and questions about Aware IM
Topic: Exporting excel/csv doc
Replies: 2
Views: 8090

Re: Exporting excel/csv doc

Thanks, Mark. I had forgotten about LIST_LINE. I was using LIST_TABLE in my excel template which works well if there aren't related fields. I'll give it a go and see how I can use it, although I think I'll end up in the same place. LIST_LINE might be able to do something I don't know of. I'll post h...
by idpSteve
Wed Dec 05, 2018 8:37 am
Forum: General discussion and questions about Aware IM
Topic: Exporting excel/csv doc
Replies: 2
Views: 8090

Exporting excel/csv doc

Hi All. I need to allow some of my users to export data from my app. The data they need to get out must include related objects. This would be OK if I didn't have multiple allowed objects that I need to export, but one of the related objects is a many to many relationship. I'd want to see something ...
by idpSteve
Thu Nov 29, 2018 1:53 pm
Forum: Problem reports
Topic: Android mobile keyboard broken
Replies: 5
Views: 9995

Re: Android mobile keyboard broken

Found out that this is also an issue in Chrome.

Vlad suggested that I specify form height. This works at 200px (no scrolling to show keyboard required) but it won't work for my purpose.

Still investigating, and looking for help.
by idpSteve
Thu Nov 29, 2018 6:28 am
Forum: Problem reports
Topic: Android mobile keyboard broken
Replies: 5
Views: 9995

Android mobile keyboard broken

Hello. There is a serious bug with Aware 8.1 and 8.2 and android phones. I have not tested with 8.0. This is an AwareIM issue - I've tested on AwareIM v7.1 and all works well. Something breaks when moving from 7.1 to 8.x A bit of background.. Apps are built in phonegap. Phonegap.zip generated by Awa...
by idpSteve
Tue Nov 13, 2018 7:09 am
Forum: General discussion and questions about Aware IM
Topic: Weird mobile keyboard bug
Replies: 0
Views: 3703

Weird mobile keyboard bug

Hi All. Having this super weird keyboard bug on android with a mobile app. I've recorded a short video of the issue which I'll link below. What happens is when filling in a form on an android phone and completing a text field the keyboard shifts up from the bottom of the screen and there's this whit...
by idpSteve
Wed Oct 31, 2018 3:34 pm
Forum: General discussion and questions about Aware IM
Topic: Column width
Replies: 4
Views: 5801

Re: Column width

Thanks, Mark. That's exactly what I was looking for.
by idpSteve
Wed Oct 31, 2018 1:50 pm
Forum: General discussion and questions about Aware IM
Topic: Column width
Replies: 4
Views: 5801

Column width

Hi All. Feeling very slow right now. I can't find where to set column widths for forms.. I used this a lot when I was developing in V7, but since moving to V8 I don't think I've used it at all. The options I'm looking for are the column width as %. So for example if there are 2 columns on a form, I ...
by idpSteve
Wed Oct 17, 2018 5:36 am
Forum: General discussion and questions about Aware IM
Topic: How am I supposed to use built-in Kendo Fonts (vs. FA)
Replies: 2
Views: 4216

Re: How am I supposed to use built-in Kendo Fonts (vs. FA)

Hi Jaymer. This works for me: <i class="k-icon k-i-photo-camera"></i> EDIT: I see if I just select, display image on button, and type in the class k-icon k-i-photo-camera then I don't see the image. Aware adds class k-sprite which breaks the icon. If I rather select no button image and in the button...
by idpSteve
Fri Oct 12, 2018 12:21 pm
Forum: General discussion and questions about Aware IM
Topic: Using Pinegrow HTML with Aware
Replies: 5
Views: 19401

Re: Using Pinegrow HTML with Aware

Hi All. Just a question, Aware currently has bootstrap 3, is that right? If so, how complicated is upgrading to bootstrap 4? Has anyone done this? EDIT: What I mean is: would it just be a case of replacing the bootstrap .css files, or is bootstrap 3 included in other aware .css? EDIT #2: To try be a...
by idpSteve
Thu Oct 04, 2018 12:56 pm
Forum: General discussion and questions about Aware IM
Topic: Calendar query input
Replies: 5
Views: 7651

Re: Calendar query input

Thanks so much, Mark. I had no idea that even existed. This is what I was doing:

Code: Select all

<div id="calendar"></div>


<script>


   $("#calendar").kendoCalendar({
    change: function(e){
        $("#testres").html(this.value()); 
    }
})


</script>

<div id="testres"></div>
by idpSteve
Thu Oct 04, 2018 6:34 am
Forum: General discussion and questions about Aware IM
Topic: Calendar query input
Replies: 5
Views: 7651

Re: Calendar query input

Hi Mark.

That’s exactly what I want to do, do you have any advice on how to actually do it? I’m not very proficient in JavaScript/jquery etc. I managed to get an alert to display when I click a day. Perhaps I’m missing something already built into aware?

Thanks for your reply.