Search found 619 matches

by johntalbott
Fri Sep 20, 2019 12:45 am
Forum: General discussion and questions about Aware IM
Topic: Has anyone built forms with custom HTML forms yet?
Replies: 8
Views: 12537

Re: Has anyone built forms with custom HTML forms yet?

Circling back .. is anyone successfully using custom forms?
by johntalbott
Wed Sep 18, 2019 10:29 pm
Forum: General discussion and questions about Aware IM
Topic: Number keypad for tablet users
Replies: 9
Views: 12221

Re: Number keypad for tablet users

RLJB wrote:John - you are a legend, I can confirm that does work. Thank you!
Great! You're welcome!
by johntalbott
Wed Sep 18, 2019 8:18 pm
Forum: General discussion and questions about Aware IM
Topic: Number keypad for tablet users
Replies: 9
Views: 12221

Re: Number keypad for tablet users

I don't have an iPad to test it, but this will work in theory. 1. In the config tool, add a Cell ID for the numeric form field. formCellID.png 2. Put this in the Form Render Script: var numericTextBoxObject = $("#CellIDGoesHere").data("kendoNumericTextBox"); numericTextBoxObject.element.attr("type",...
by johntalbott
Wed Sep 18, 2019 1:39 am
Forum: General discussion and questions about Aware IM
Topic: Number keypad for tablet users
Replies: 9
Views: 12221

Re: Number keypad for tablet users

You might try the approach described here to force the built in iPad numeric keypad to open.

https://stackoverflow.com/questions/617 ... text-input

https://docs.telerik.com/kendo-ui/contr ... imitations
by johntalbott
Fri Sep 13, 2019 6:15 pm
Forum: General discussion and questions about Aware IM
Topic: The *OFFICIAL* Fall 2019 WISH LIST is here !!!!!!!
Replies: 49
Views: 61964

Re: Memory Variables

Would it really be that tough to have ONE MORE object in memory all the time? I'll concede that it will take up server memory on a per-user basis - so it might not be the best place to have several 50,000k JSON string fields, but adding 1-5k more per session could be planned for. In addition to LIR...
by johntalbott
Fri Sep 13, 2019 5:48 pm
Forum: Problem reports
Topic: Display multiple documents like WordMerge
Replies: 13
Views: 18765

Re: Display multiple documents like WordMerge

The cleanest would be to use JS to call a process passing an array of the filtered records.
by johntalbott
Mon Sep 02, 2019 10:02 pm
Forum: General discussion and questions about Aware IM
Topic: Consuming an AIM REST API from with AIM app
Replies: 18
Views: 27663

Re: Consuming an AIM REST API from with AIM app

Unfortunately I haven't.

Vlad - Is there a way to work around this issue?
by johntalbott
Tue Aug 27, 2019 6:36 am
Forum: General discussion and questions about Aware IM
Topic: HTML/CSS Hover Tip on Schedule Event
Replies: 2
Views: 6562

Re: HTML/CSS Hover Tip on Schedule Event

With custom code yes. I don't believe there is an out of the box way to do it.
by johntalbott
Tue Aug 27, 2019 5:04 am
Forum: General discussion and questions about Aware IM
Topic: Spinner on number fields in Grid HAS TO GO! #IsItJustMe?
Replies: 4
Views: 10929

Re: Spinner on number fields in Grid HAS TO GO! #IsItJustMe?

A little custom CSS will git r done

div.k-grid-header .k-numerictextbox .k-select{
display: none;
}

div.k-grid-header .k-numeric-wrap {
padding-right: 2px;
}

div.k-grid-header span.k-operator-hidden{
padding-right: 0px;
}
by johntalbott
Tue Aug 20, 2019 2:43 am
Forum: General discussion and questions about Aware IM
Topic: Remove Show Business Hours Button - Scheduler
Replies: 1
Views: 3139

Re: Remove Show Business Hours Button - Scheduler

Init Script

config.footer = {command: false}
by johntalbott
Mon Aug 19, 2019 10:01 pm
Forum: General discussion and questions about Aware IM
Topic: Editable Query, Have row selected when user clicks in field
Replies: 1
Views: 3181

Re: Editable Query, Have row selected when user clicks in fi

I thought that what you're describing happens by default.

If for some reason that is not the case, it can definitely be done with a bit of js.
by johntalbott
Mon Aug 19, 2019 9:47 pm
Forum: General discussion and questions about Aware IM
Topic: Another Real Time Data Updates demo / proof of concept
Replies: 4
Views: 6418

Re: Another Real Time Data Updates demo / proof of concept

But seriously, this is nice. 1) so we know a grid can redraw based on a process running, etc. But I bet this is something in the render/init script that must be "listening" for something... but what? 2) And, since there are some who don't like "losing their place" when a screen redraws (like if you...
by johntalbott
Mon Aug 19, 2019 4:03 pm
Forum: General discussion and questions about Aware IM
Topic: Another Real Time Data Updates demo / proof of concept
Replies: 4
Views: 6418

Another Real Time Data Updates demo / proof of concept

Here is video demo of another approach to broadcasting real-time data changes to all users. https://screencast-o-matic.com/watch/cqjqowt1Ph NOTE: Turn off sound in video. It's all static. There wasn't supposed to be sound anyway. :) This is using AIM's out of the box CRM sample with: - some custom c...
by johntalbott
Fri Jul 26, 2019 8:11 pm
Forum: General discussion and questions about Aware IM
Topic: Force Auto Refresh In Different Users Browser
Replies: 1
Views: 3133

Re: Force Auto Refresh In Different Users Browser

The post below contains a screen cast of a POC that demonstrates real-time query updates for different users in different browsers.

https://www.awareim.com/forum/viewtopic ... =websocket