Search found 33 matches

by Pomegranate
Fri Nov 04, 2022 5:53 am
Forum: General discussion and questions about Aware IM
Topic: LIST_TABLE_START Inside a Form [SOLVED]
Replies: 2
Views: 2788

Re: LIST_TABLE_START Inside a Form

If anyone is interested, we(our junior developer) found a solution for this. We gave the Parent and ID and Classes for the Children, and with some Javascript, we got all of the children with queryselectorall and childappended the children variable into the parent element by finding it with its ID. s...
by Pomegranate
Mon Oct 31, 2022 5:56 am
Forum: General discussion and questions about Aware IM
Topic: LIST_TABLE_START Inside a Form [SOLVED]
Replies: 2
Views: 2788

LIST_TABLE_START Inside a Form [SOLVED]

Hello gang, Has anyone ever been able to use LIST_TABLE_START inside a form before? Or have tried something similar? I wanted to use LIST_TABLE_START because it can find context as such and allows me to create any type of structure I want, <<LIST_TABLE_START('FIND SOMETHING WHERE SOMETHING') >> <<SO...
by Pomegranate
Mon Nov 01, 2021 3:26 am
Forum: General discussion and questions about Aware IM
Topic: Session Timeout after REST Call [Solved]
Replies: 5
Views: 11930

Re: Session Timeout after REST Call

Hey Dave, Thank you so much for you advise, setting up an Alias and pointing to it works, But I had some hurdles which I figured out in the end, my CORS configuration is as follows if anyone needs it in the future. <filter> <filter-name>CorsFilter</filter-name> <filter-class>org.apache.catalina.filt...
by Pomegranate
Tue Oct 12, 2021 7:40 am
Forum: General discussion and questions about Aware IM
Topic: Session Timeout after REST Call [Solved]
Replies: 5
Views: 11930

Re: Session Timeout after REST Call

Thanks Jaymer, its good to hear from you.

I was afraid of setting up a third-party service for something like this, I'll give it a go I guess, thanks again for your help :).
by Pomegranate
Tue Oct 12, 2021 3:57 am
Forum: General discussion and questions about Aware IM
Topic: Session Timeout after REST Call [Solved]
Replies: 5
Views: 11930

Session Timeout after REST Call [Solved]

Hi guys, I've read up on the forums and haven't found a simple solution to this problem, I'm using a custom javascript form builder script for front-end users to create their own form, I render the form with javascript and after a user builds their form and clicks the save button, a JSON string is c...
by Pomegranate
Tue Apr 06, 2021 8:25 am
Forum: General discussion and questions about Aware IM
Topic: Manipulating Kendo Widgets through Initialization Scripts
Replies: 1
Views: 2935

Manipulating Kendo Widgets through Initialization Scripts

Hi guys,

There was once a discussion about being able to use an initialization script set in a template for the filters on a kendo query, can anyone please point me to that discussion or give an example of how it is done, because I can't find it on the forum anymore,

Thank you :)
by Pomegranate
Mon Oct 05, 2020 9:11 am
Forum: General discussion and questions about Aware IM
Topic: startProcessWithInit problems
Replies: 0
Views: 6121

startProcessWithInit problems

Hi everyone, I'm trying to use startProcessWIthInit on a custom query and I'm running into some problems, here is my Custom Query HTML <input id="value{ID}"></input> <input id="ID{ID}" type="hidden" value="{ID}"></input> <br/> <div class="submitButton" onclick="AwareApp.startProcessWithInit('AddToCa...
by Pomegranate
Fri Jun 26, 2020 8:45 am
Forum: General discussion and questions about Aware IM
Topic: Operations with records to display HTML document
Replies: 4
Views: 6733

Re: Operations with records to display HTML document

Hi JHew,

I assume this code snippet is only half of what you got, because the <table> tag is not closed at the end,

Also, have you tried using the CSS styles in a differen place such as a file in the CSS directory in Aware instead of putting it in with the HTML codes?
by Pomegranate
Tue Jun 23, 2020 9:23 am
Forum: General discussion and questions about Aware IM
Topic: Keeping HTML together
Replies: 6
Views: 10784

Re: Keeping HTML together

Ah, I finally see what you mean, Alright, we just need a bit of CSS for that, You can either use this bit, which will have effect throughout your whole system .aw-form label, .aw-form span { display:inline-block; vertical-align:text-top; } Or you can assign a class to your form and it will have effe...
by Pomegranate
Tue Jun 23, 2020 4:47 am
Forum: General discussion and questions about Aware IM
Topic: Keeping HTML together
Replies: 6
Views: 10784

Re: Keeping HTML together

Ah, I see what you mean, You can do it in lots of ways, the most easiest way is to just use a table, <table> <tr> <td style="vertical-align: text-top;"> label: </td> <td style="vertical-align: text-top;"> Line1<br/>Line2<br/>City </td> </tr> </table> Or if you want to use <divs> to have more freedom...
by Pomegranate
Tue Jun 23, 2020 4:28 am
Forum: General discussion and questions about Aware IM
Topic: Keeping HTML together
Replies: 6
Views: 10784

Re: Keeping HTML together

Hiya, can you please give more details? I couldn't understand your question completely.

Also, can you include your HTML code?
by Pomegranate
Fri Apr 24, 2020 4:49 am
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 7574691

Re: Which features do you want in the next release?

The ability to run FIND actions in real time and see the results would be awesome :)

Like writing an SQL query on SQL clients and instantly getting back the results,
by Pomegranate
Fri Apr 24, 2020 4:47 am
Forum: Wish List
Topic: FIND Action tester
Replies: 1
Views: 13975

Re: FIND Action tester

Bump, this functionality will be a dream come true :).
by Pomegranate
Wed Mar 18, 2020 5:03 am
Forum: General discussion and questions about Aware IM
Topic: Some javascript problems
Replies: 1
Views: 5149

Re: Some javascript problems

Using this line instead of the previous one returns a null instead of an undefined :S

Code: Select all

console.log(element.items[0]); //Previous
console.log(element.items.item(0)); //Testing a different method
by Pomegranate
Wed Mar 18, 2020 4:32 am
Forum: General discussion and questions about Aware IM
Topic: Some javascript problems
Replies: 1
Views: 5149

Some javascript problems

Hi everyone, I'm using some javascript to animate some stacked cards and I keep running into a weird problem and I've narrowed it down to this, this.element = element; this.items = this.element.getElementsByClassName('js-stack-cards__item'); Now the above codes get the items by their class name and ...