Search found 619 matches

by johntalbott
Fri Feb 15, 2019 11:08 pm
Forum: General discussion and questions about Aware IM
Topic: Setting Focus on Filter when Query is Run
Replies: 7
Views: 9025

Re: Setting Focus on Filter when Query is Run

The expression $("k-input:first").focus(); selects the first input field on the screen. A filter may not be the first one - it depends on what else is there beside the query. So you need to set it in the first (possibly) field INSIDE the query element. $('#" + parser.m_widgetInfo.wrapperId) gives y...
by johntalbott
Thu Jan 31, 2019 5:55 pm
Forum: General discussion and questions about Aware IM
Topic: Remove Up, Down Arrows on Numeric Filters
Replies: 1
Views: 2690

Re: Remove Up, Down Arrows on Numeric Filters

Using the browser inspector you should be able find the associated css class. You can use override the class in a custom css file.
by johntalbott
Wed Jan 30, 2019 7:09 pm
Forum: General discussion and questions about Aware IM
Topic: Use Database Identity Fields for Primary Key?
Replies: 21
Views: 29931

Re: Use Database Identity Fields for Primary Key?

There are pros and cons of moving to GUID, all you have to do is google GUID VS INT and see the concerns of using GUID as the ID, specifically regarding database performance. I completely agree that performance is a a big deal. As long as an ID using a GUID is not configured as a clustered index, t...
by johntalbott
Mon Jan 28, 2019 5:07 am
Forum: General discussion and questions about Aware IM
Topic: Real-Time Data Updates via WebSockets
Replies: 3
Views: 6461

Real-Time Data Updates via WebSockets

Here is a demo video of real-time data updates using WebSockets. https://screencast-o-matic.com/watch/cqVufB3wZc To be clear ... it's an AwareIM app, but a client-side script is used to generate the Kendo grid and set up the WebSocket client for communication with the WebSocket server. The WebSocket...
by johntalbott
Fri Jan 25, 2019 10:10 pm
Forum: General discussion and questions about Aware IM
Topic: Use Database Identity Fields for Primary Key?
Replies: 21
Views: 29931

Re: Use Database Identity Fields for Primary Key?

That's a big 10-4. Identity columns are standard database functionality.

I'd also like the option to use GUID's as ID's for global uniqueness to remove the concern of ID collisions altogether.

The GUID option also removes the need for the existence of an BAS_IDGEN table.
by johntalbott
Fri Jan 11, 2019 6:47 am
Forum: General discussion and questions about Aware IM
Topic: 8.3 - vote for OAuth support for exposed REST services.
Replies: 38
Views: 55884

Re: 8.3 - vote for OAuth support for exposed REST services.

There are many REST best practice resources that prescribe the same basic fundamentals. -HTTP verbs - GET, PUT, POST, DELETE, PATCH -CORS (Cross-Origin Resource Sharing) -JSON input -Standard Response Codes -Filtering, Sorting, Paging -OAuth -API Versioning REST Best Practices References https://git...
by johntalbott
Sat Jan 05, 2019 12:36 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 24755

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

What John has done in his demo video is fantastic. John would it be possible to include saving of the state of the query at the same time (so that users could define what columns are included)? Being able to save these as AwareIM objects so the client could recall them as a later time would be very...
by johntalbott
Tue Jan 01, 2019 8:13 pm
Forum: General discussion and questions about Aware IM
Topic: What would be the ONE thing you want in 2019?
Replies: 12
Views: 15728

Re: What would be the ONE thing you want in 2019?

I'd like to teach the world to sing
In perfect harmony
I'd like to buy the world a Coke
And keep it company
That's the real thing
by johntalbott
Tue Jan 01, 2019 2:20 am
Forum: General discussion and questions about Aware IM
Topic: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING
Replies: 21
Views: 24755

Re: ◄BREAKTHRU► User Defined SAVED Queries EXEC_STRING

Here is quick video of a proof of concept to save a search by saving the grid filter values that can then be reapplied. It's a client side script that leverages the Kendo UI API to save and apply the filters. For the purpose of this poc, the filter values are saved in memory but the code could be en...
by johntalbott
Sun Dec 23, 2018 8:53 am
Forum: General discussion and questions about Aware IM
Topic: Dynamic Upadte On Numeric Spinner Change
Replies: 5
Views: 5690

Re: Dynamic Upadte On Numeric Spinner Change

Well that's no fun. May need a script.
by johntalbott
Sun Dec 23, 2018 8:36 am
Forum: General discussion and questions about Aware IM
Topic: Dynamic Upadte On Numeric Spinner Change
Replies: 5
Views: 5690

Re: Dynamic Upadte On Numeric Spinner Change

My guess is that a dynamic rule will only be triggered if an attribute value changes.

Code: Select all

If MyBO.Quantity WAS CHANGED THEN MyBO.Amount = MyBO.Quantity * MyBO.Rate 
by johntalbott
Thu Dec 20, 2018 3:51 am
Forum: General discussion and questions about Aware IM
Topic: Can I use ENTER NEW with multiple records
Replies: 7
Views: 8569

Re: Can I use ENTER NEW with multiple records

Execute process after save: "ENTER NEW BO"