Search found 201 matches

by idpSteve
Wed Jun 26, 2019 6:27 am
Forum: General discussion and questions about Aware IM
Topic: Session Timed Out - best practice
Replies: 3
Views: 5687

Re: Session Timed Out - best practice

I would also love a solution to this!
by idpSteve
Wed Jun 26, 2019 6:22 am
Forum: General discussion and questions about Aware IM
Topic: Hiding saturday and sunday from calendar
Replies: 3
Views: 5399

Re: Hiding saturday and sunday from calendar

Under 'Display Settings' you'll see you selected 'Calendar/Scheduler'. Click the three dots next to that, you'll see a grid at the bottom of the popup, there you can select 'Working Week'
by idpSteve
Tue Jun 25, 2019 7:55 am
Forum: Problem reports
Topic: Session Timed Out - not working
Replies: 1
Views: 4733

Re: Session Timed Out - not working

I've never managed to get session timeout to change, no matter what I try. Haven't looked into it for a while though.
by idpSteve
Mon Jun 24, 2019 11:32 am
Forum: General discussion and questions about Aware IM
Topic: Bootstrap Cards - anyone using them?
Replies: 6
Views: 8632

Re: Bootstrap Cards - anyone using them?

Perhaps have a look at material.io? They have some nice looking cards, and are a good alternative to bootstrap I think. Also there shouldn't be conflicts with class names with bootstrap 3 in Aware as far as I've experienced.. Let me know if you need some help!
by idpSteve
Mon Jun 24, 2019 5:22 am
Forum: General discussion and questions about Aware IM
Topic: Kendo Funnel Chart
Replies: 2
Views: 4924

Re: Kendo Funnel Chart

From the example on their site: Paste this in an html panel: <div id="example"> <div class="demo-section k-content wide"> <h4>Sales statistics</h4> <div id="chart-oct"></div> <div id="chart-nov"></div> <div id="chart-dec"></div> </div> <div class="box wide"> <div class="box-col"> <h4><input type="ch...
by idpSteve
Mon Jun 24, 2019 5:13 am
Forum: General discussion and questions about Aware IM
Topic: Bootstrap Cards - anyone using them?
Replies: 6
Views: 8632

Re: Bootstrap Cards - anyone using them?

Aware uses bootstrap 3.4.7 iirc, which doesn't have cards (added in bootstrap 4). You can try use panels? They are similar. https://getbootstrap.com/docs/3.3/components/#panels Otherwise you can include a bootstrap 4 cdn on whichever page you want to use cards on, although this might cause issues wi...
by idpSteve
Thu Jun 13, 2019 1:41 pm
Forum: General discussion and questions about Aware IM
Topic: Pagination in REST call
Replies: 7
Views: 10168

Re: Pagination in REST call

Do you perhaps have Skype? It will be easier to assist there.
by idpSteve
Thu Jun 13, 2019 1:17 pm
Forum: General discussion and questions about Aware IM
Topic: Pagination in REST call
Replies: 7
Views: 10168

Re: Pagination in REST call

I've done something like this while syncing an outlook calendar. Here is a link to how it works with Microsoft graph API: https://docs.microsoft.com/en-us/graph/paging What happens is if you select to receive 100 records at a time, and there are more than 100 records, then a 'page 2' (@odata:nextLin...
by idpSteve
Thu Jun 13, 2019 12:29 pm
Forum: General discussion and questions about Aware IM
Topic: Form navigation
Replies: 2
Views: 4769

Form navigation

Hi all. I've been struggling with something for a while now, and would love any opinions/ideas/help. I've got an object with a bunch of children objects. When viewing the child object from the list of children on a form of the parent I can use the 'Next form' and 'Previous form' buttons to navigate ...
by idpSteve
Thu May 30, 2019 2:22 pm
Forum: General discussion and questions about Aware IM
Topic: Aware IM survey
Replies: 2
Views: 28235

Re: Aware IM survey

Done! Always good to see Aware IM listening to customers. Support is always awesome!
by idpSteve
Thu May 30, 2019 6:38 am
Forum: General discussion and questions about Aware IM
Topic: Output to div
Replies: 4
Views: 6317

Re: Output to div

Awesome, thanks for the replies!

Knowing it is possible I'm sure I can get it to work.

@Henrik your link unfortunately doesn't work, I think the one you posted only works when logged in to dropbox as you.
by idpSteve
Wed May 29, 2019 11:47 am
Forum: General discussion and questions about Aware IM
Topic: Output to div
Replies: 4
Views: 6317

Output to div

Hi All. I'm wondering if there is any way to output a process or query result to a div rather than a panel.. We've got a client that is very specific with how their application should look, and it is almost impossible to make it look like this client wants using AwareIM panels only. It is much less ...
by idpSteve
Tue May 28, 2019 6:37 am
Forum: General discussion and questions about Aware IM
Topic: converting b64 to image
Replies: 4
Views: 6453

Re: converting b64 to image

Thanks to Vlad for being awesome, I have a solution:

Add a text attribute, with html format.

Populate it with <img src="[b64 string here]"></img>

Call it in the word report using

<<object.HTMLattr,html>>

See the pretty pictures in the word report :)
by idpSteve
Tue May 28, 2019 5:27 am
Forum: General discussion and questions about Aware IM
Topic: Ordering Query Groups
Replies: 1
Views: 3350

Re: Ordering Query Groups

You can change the order of groups by adding: FIND ...... ORDER BY [Group Attribute] ASC, [Attribute to sort within group] ASC It looks like your groups are sorted alphabetically, that's probably the issue. I think you need to change the calculated attribute type to 'Date', that should resolve your ...