Search found 7525 matches

by aware_support
Wed Apr 19, 2023 4:47 am
Forum: General discussion and questions about Aware IM
Topic: System Lock Error
Replies: 6
Views: 3006

Re: System Lock Error

Yes, the system is locked after the specified number of unsuccessful login attempts
by aware_support
Fri Mar 31, 2023 12:18 am
Forum: General discussion and questions about Aware IM
Topic: Calendar
Replies: 4
Views: 2118

Re: Calendar

You can set it for the Working Week view by a script. Go to the scripts property of the corresponding query and paste the following script into the Initialization Script tab:

config.workDays = [1,2,3,4];
by aware_support
Fri Mar 31, 2023 12:11 am
Forum: General discussion and questions about Aware IM
Topic: What would be the ONE thing you want in 2019?
Replies: 12
Views: 14035

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

ENTER NEW now supports VIEW and NEW TAB - check the Rule Language Reference

Also, if a process is marked as supporting the "single tab mode" it works without popups - see the documentation.
by aware_support
Thu Mar 30, 2023 6:55 am
Forum: General discussion and questions about Aware IM
Topic: V8 dropdown and combobox should default to basic usage
Replies: 13
Views: 47948

Re: V8 dropdown and combobox should default to basic usage

A slight correction to the previous script: If a form has more than one section the first line should be: var f = parser.getField("AttributeNameThatDropDownShows", "NameOfTheSectionWhereAttributeIs"); For a multi-column combo use this script: var f = parser.getField("AttributeNameThatDropDownShows",...
by aware_support
Thu Mar 30, 2023 5:18 am
Forum: General discussion and questions about Aware IM
Topic: Calendar
Replies: 4
Views: 2118

Re: Calendar

Which calendar are you talking about? The one displayed for date controls in forms or Calendar/Scheduler displayed by a query?
by aware_support
Thu Mar 30, 2023 3:14 am
Forum: General discussion and questions about Aware IM
Topic: V8 dropdown and combobox should default to basic usage
Replies: 13
Views: 47948

Re: V8 dropdown and combobox should default to basic usage

The following script will automatically open a drop down when it receives focus. The script has to be added as the render script for the form which contains the drop down. var f = parser.getField("AttributeNameThatDropDownShows"); $("#" + f.getId()).parents (".k-dropdown").on ("focus", function () {...
by aware_support
Mon Mar 27, 2023 5:03 am
Forum: General discussion and questions about Aware IM
Topic: Anyone have issues uploading large images?
Replies: 14
Views: 59510

Re: Anyone have issues uploading large images?

Don't try to calculate the amount of JMS_BROKER_MEMORY - just make it bigger than the biggest file users are allowed to upload. Or make it MUCH bigger than that if you have a decent server, that is. Make it 200Mb if max file size is 20Mb, for example.
by aware_support
Fri Mar 24, 2023 8:35 am
Forum: General discussion and questions about Aware IM
Topic: Anyone have issues uploading large images?
Replies: 14
Views: 59510

Re: Anyone have issues uploading large images?

In the same place where you specify that a process implements multi-file upload.
by aware_support
Fri Mar 24, 2023 6:12 am
Forum: General discussion and questions about Aware IM
Topic: Anyone have issues uploading large images?
Replies: 14
Views: 59510

Re: Anyone have issues uploading large images?

You don't need a separate script for this anymore. Build 3132 has the ability to specify max. file size and max. total file size for MFU. Also make sure that your BASServer.props file has adequate setting for JMS_BROKER_MEMORY - check out this thread: http://awareim.com/forum/viewtopic.php?f=1&t=111...
by aware_support
Wed Mar 22, 2023 11:23 pm
Forum: General discussion and questions about Aware IM
Topic: Anyone tried the Stripe plugin? Think its worth $500?
Replies: 9
Views: 2734

Re: Anyone tried the Stripe plugin? Think its worth $500?

The price of the plugin has changed since the email to AC/DC. It is $500 and it's worth it. See awareim.com/product-options
by aware_support
Wed Mar 22, 2023 11:20 pm
Forum: General discussion and questions about Aware IM
Topic: Query Columns not being responsive
Replies: 6
Views: 1451

Re: Query Columns not being responsive

Watch out for queries that have Save Settings operation defined, that allow end users to save their preferred query layout. This can mess with things like responsiveness.
by aware_support
Sun Mar 19, 2023 11:30 pm
Forum: General discussion and questions about Aware IM
Topic: The new 8.8 "Resolve Shortcuts" feature...
Replies: 6
Views: 4683

Re: The new 8.8 "Resolve Shortcuts" feature...

So, here is MY question, Why can't aware examine the query and automatically NOT resolve any shortcuts that are not used in the filtering or display? You are right - it should do it automatically in theory. However, it's not that easy and quite error-prone, as the system has to consider LOTS and LO...
by aware_support
Fri Mar 17, 2023 5:51 am
Forum: General discussion and questions about Aware IM
Topic: Stored Procedures Don't Get Copied?
Replies: 10
Views: 3462

Re: Stored Procedures Don't Get Copied?

When stored procedures are stored in a business space version they are applied to the underlying database when the business space is published for the first time.
by aware_support
Thu Mar 16, 2023 11:57 pm
Forum: General discussion and questions about Aware IM
Topic: Stored Procedures Don't Get Copied?
Replies: 10
Views: 3462

Re: Stored Procedures Don't Get Copied?

Stored procedures do get copied if you define them in the properties of a business space version.