Search found 20 matches

by edvwruhs
Wed Jun 07, 2023 12:15 pm
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7774

Re: Custom CSS not working

What about hpl123's suggestion? When using the element inspector on the button, you should be able to see all CSS rules that are being applied. css.png If you can see the rules from your custom CSS file but they are striked through, it is because another rule takes precedence. (See orange lines in ...
by edvwruhs
Wed Jun 07, 2023 7:40 am
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7774

Re: Custom CSS not working

CTRL+SHIFT+R will force the website to load with cache emptied. If that doesn't work, try renaming the CSS file. As far as I know, AwareIM will load the CSS file regardless of its name, as long as it resides in the correct folder. I tried that, didnt work unfortunately and I got this error for the ...
by edvwruhs
Wed Jun 07, 2023 6:46 am
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7774

Re: Custom CSS not working

I have 3 buttons in a formular that I want to style independently with custom css. I assign a css class to each button and I created a custom css file in the AwareIm folder (AwareIM/Custom/CSS/MyFolder). The problem is when trying to style (box-shadows, text-weight, etc.) the buttons nothing happen...
by edvwruhs
Wed Jun 07, 2023 6:33 am
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7774

Re: Custom CSS not working

Jaymer wrote: Tue Jun 06, 2023 3:54 pm With a screenshot, show where you are applying the css.
Button on Form
Button on Form
formButton.PNG (6.04 KiB) Viewed 7743 times


I applied the css class in the button settings and then I created a css-file in the CSS Folder (AwareIM/Custom/CSS/MyFolder/MyCssFile)
by edvwruhs
Tue Jun 06, 2023 2:48 pm
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7774

Custom CSS not working

I have 3 buttons in a formular that I want to style independently with custom css. I assign a css class to each button and I created a custom css file in the AwareIm folder (AwareIM/Custom/CSS/MyFolder). The problem is when trying to style (box-shadows, text-weight, etc.) the buttons nothing happens...
by edvwruhs
Thu Jun 01, 2023 12:16 pm
Forum: General discussion and questions about Aware IM
Topic: Process Button on Form
Replies: 5
Views: 2719

Re: Process Button on Form

Can you show a screen grab of the panel that shows what the button does please. Also you may need to refresh the form after you've run a process on it. I just realized, when I click the button and afterwards close the form the change is made, but when I click the button and then click save then the...
by edvwruhs
Thu Jun 01, 2023 12:02 pm
Forum: General discussion and questions about Aware IM
Topic: Process Button on Form
Replies: 5
Views: 2719

Re: Process Button on Form

You don't need to Find the BO, it is already in context. You just need to set the process input to be the BO name that you're using. https://www.awareim.com/dokuwiki/doku.php/docs/2500_config_apps/0900_add_edit_processes#process_input If you want the button to be next to the check box you need to a...
by edvwruhs
Thu Jun 01, 2023 10:07 am
Forum: General discussion and questions about Aware IM
Topic: Process Button on Form
Replies: 5
Views: 2719

Process Button on Form

Hello Everyone, I am trying to change a yes/no value with a process via button in a form, the problem is when calling the process the value doesnt change at all. I already checked, the process does find the correct record, but it doesnt change the value. Any ideas? process.PNG 2. Oh and by chance do...
by edvwruhs
Wed May 31, 2023 10:12 am
Forum: General discussion and questions about Aware IM
Topic: Show buttons in Panel Operations or Operations w/Record as Disabled
Replies: 7
Views: 6126

Re: Show buttons in Panel Operations or Operations w/Record as Disabled

In the event you have an HTML cell where you place buttons, you can modify the default class to make it appear dimmed (ie. disabled). You can see the conditional code that either displays the valid button, OR a "disabled" button. I also call a process named "dummy" as a placeholder. Inspecting the ...
by edvwruhs
Mon Apr 24, 2023 8:35 am
Forum: General discussion and questions about Aware IM
Topic: Import Document from URL
Replies: 20
Views: 25037

Re: Import Document from URL

BobK wrote: Thu Feb 03, 2022 2:50 am Would you be interested in a java plug-in that DOWNLOADS and IMPORTS a file from an URL?
Hey Bob, I would need something similar like this, I would also pay thats not a problem

Best Regards
by edvwruhs
Thu Apr 13, 2023 6:16 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 13061

Re: FIND instances of a referred object

Use the data model tool and diagram the relationship between RegularUser, Project and Landfill and post the image. If you have multiple BOs that are reference attributes to multiple other BOs you're going to find it hard to build these queries. Another tip is that using attributes set as multiple r...
by edvwruhs
Thu Apr 13, 2023 6:16 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 13061

Re: FIND instances of a referred object

Not sure it this is what you are looking for but.... There is a single RegularUser (Admin) It Creates 3 Projects... Project A, Project B and Project C Project A and project B are Owned by RegularUser. Project C is not Owned by RegularUser It Creates 3 Landfills that are Owned by RegularUser... Land...
by edvwruhs
Tue Apr 11, 2023 10:14 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 13061

Re: FIND instances of a referred object

Yes exactly this is my data model structure, I tried This and Other because I thought the "this" would find the first project in context and the "other" would find the other 4 projects in context, but unfortunately it only found the second project in context. So to summarize it only found the first ...
by edvwruhs
Tue Apr 04, 2023 10:34 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 13061

Re: FIND instances of a referred object

If ThisRegularUser.Landfill IS UNDEFINED then FIND Project WHERE (Project IN ThisRegularUser.Project) FIND Landfill WHERE (Landfill IN ThisProject.Landfill OR Landfill IN OtherProject.Landfill) INSERT Landfill IN RegularUser.Landfill Try replacing ThisRegularUser WITH LoggedInRegularUser in your qu...
by edvwruhs
Tue Apr 04, 2023 10:33 am
Forum: General discussion and questions about Aware IM
Topic: FIND instances of a referred object
Replies: 14
Views: 13061

Re: FIND instances of a referred object

I see, I tried it without the if-condition but I get the same result :( What does the log file say? When the FINDs run, how many Project and Landfill BOs does the log say that it has found? What does the log report is happening when the INSERT statement is called? Well, it finds 5 Projects (as expe...