Search found 197 matches

by UnionSystems
Wed Mar 01, 2017 6:14 am
Forum: General discussion and questions about Aware IM
Topic: LIST_TABLE in a form
Replies: 8
Views: 15163

LIST_TABLE in a form

We'd like to display a list of the names of a parent BO's children in the parent's form as a HTML field (without using a normal form table). Is it possible to use the function LIST_TABLE in a HTML attribute of the form? We cannot get LIST_TABLE or LIST_SIZE or LIST to work in a HTML attribute of a f...
by UnionSystems
Sun Feb 19, 2017 4:59 am
Forum: General discussion and questions about Aware IM
Topic: Retrieving a previously uploaded BSV File
Replies: 2
Views: 4251

Re: Retrieving a previously uploaded BSV File

Thanks intra,

Thats exactly what I needed. I've included a screen shot of the option for reference.

Image
by UnionSystems
Sun Feb 19, 2017 1:19 am
Forum: General discussion and questions about Aware IM
Topic: Retrieving a previously uploaded BSV File
Replies: 2
Views: 4251

Retrieving a previously uploaded BSV File

I know if you publish a BSV to a server by restarting AwareIM whilst the BSV is in AwareIM/AUTO_DEPLOYMENT that BSV will end up in AwareIM/DEPLOYED and can be retrieved from there. But if you have updated the server by uploading new BSV files through the browser (using the inbuilt Publish Business S...
by UnionSystems
Fri Feb 10, 2017 3:41 am
Forum: General discussion and questions about Aware IM
Topic: Adding META tags
Replies: 3
Views: 8107

Re: Adding META tags

Thanks Gabbitas. That works.

On Linux that file is Tomcat/webapps/AwareIM/startup.html
by UnionSystems
Thu Feb 09, 2017 6:03 am
Forum: General discussion and questions about Aware IM
Topic: Adding META tags
Replies: 3
Views: 8107

Adding META tags

I'd like to hide the safari browser chrome on IOS for my mobile phone version screens. Normally I do this by adding the appropriate META tags (eg <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-touch-fullscreen" content="yes" />). I'm using the generic Boostrap theme. Is...
by UnionSystems
Thu Nov 10, 2016 4:47 pm
Forum: General discussion and questions about Aware IM
Topic: Anyone make REST calls from Aware?
Replies: 6
Views: 8593

Re: Anyone make REST calls from Aware?

We've been using the Ajax REST forms for casual registrations of new data (Event registration forms) so no authentication has been required. If I were to use REST forms to allow a person to access and update their data set (eg amend their registration details) I'd allocate them a long random access ...
by UnionSystems
Thu Nov 10, 2016 11:32 am
Forum: General discussion and questions about Aware IM
Topic: Anyone make REST calls from Aware?
Replies: 6
Views: 8593

Re: Anyone make REST calls from Aware?

Hi, I've been using JavaScript and Ajax as per your example to pass data in both directions between non AwareIM website forms and the generic AwareIM REST interface. Works fine and avoids having to use iframes around Aware forms. What I have struggled with in AwareIM is consuming other external REST...
by UnionSystems
Mon Oct 10, 2016 12:08 pm
Forum: General discussion and questions about Aware IM
Topic: LDAP Help... please...
Replies: 2
Views: 4984

Re: LDAP Help... please...

http://www.awareim.com/product-options/ implies you need an additional option to enable LDAP?
by UnionSystems
Wed Oct 05, 2016 8:35 am
Forum: Tips and Tricks
Topic: Extending HTML Editor Toolbar with insertHTML
Replies: 14
Views: 37463

Re: Extending HTML Editor Toolbar with insertHTML

SOME REFINEMENTS OF ABOVE I've ended up with more than 40 instances of this refined HTML toolbar in various forms in my App and its painful to go to each to make small instances of edits so I've moved the code to a shared Javascript which I call from each form. Firstly I've created a custom JS fold...
by UnionSystems
Fri Sep 16, 2016 11:16 am
Forum: General discussion and questions about Aware IM
Topic: Show-Stopper Database Problem!
Replies: 14
Views: 27832

Re: Show-Stopper Database Problem!

Seems to have worked :-)
by UnionSystems
Fri Sep 16, 2016 4:49 am
Forum: General discussion and questions about Aware IM
Topic: Show-Stopper Database Problem!
Replies: 14
Views: 27832

Re: Show-Stopper Database Problem!

I think i found a resolution to this problem on MYSQL. 1. Add the mysql parameters to your my.cnf or equivalent file innodb_file_per_table innodb_file_format = Barracuda 2. ALTER the table to use ROW_FORMAT=COMPRESSED . Where BSV_TABLE is the name of your mysql table. ALTER TABLE BSV_TABLE ENGINE=In...
by UnionSystems
Thu Sep 15, 2016 10:14 am
Forum: General discussion and questions about Aware IM
Topic: Aware IM User Trends?
Replies: 8
Views: 10180

Re: Aware IM User Trends?

We've been searching for and testing various Rapid Application Development (RAD) candidates for the last 12 months. In this time we've seriously trialled both Wakanda and WaveMaker and built test Apps using both of them. Both of these tools were (and are) impressive but fell short in some critical c...
by UnionSystems
Tue Sep 06, 2016 9:40 am
Forum: Tips and Tricks
Topic: Extending HTML Editor Toolbar with insertHTML
Replies: 14
Views: 37463

Re: Extending HTML Editor Toolbar with insertHTML

I have a Message BO that has a relationship to the Person BO and I assign the Message Subject and Body attributes to the Notification object. This is the code I use to swap the tokens with data in a rule of the Message BO. Message.Subject=REPLACE_PATTERN(Message.Subject,'\{FirstName\}',Message.Perso...
by UnionSystems
Mon Sep 05, 2016 9:04 pm
Forum: Tips and Tricks
Topic: Extending HTML Editor Toolbar with insertHTML
Replies: 14
Views: 37463

Re: Extending HTML Editor Toolbar with insertHTML

Sorry ZIPPEd version of BSV really attached this time :-)
by UnionSystems
Mon Sep 05, 2016 9:02 pm
Forum: Tips and Tricks
Topic: Extending HTML Editor Toolbar with insertHTML
Replies: 14
Views: 37463

BSV Example

Here is a BSV demonstrating insertHTML