Search found 17 matches

by ppatel@slscorp.com
25 Aug 2023, 11:35
Forum: Discussion
Topic: Email Configuration for M365/Exchange Online
Replies: 1
Views: 89

Re: Email Configuration for M365/Exchange Online

This is what we did and it works.
Put your login and pass word credentials.
Screenshot 2023-08-25 023125.png
by ppatel@slscorp.com
16 Aug 2023, 16:00
Forum: Discussion
Topic: [current_user_group_id] available to use?
Replies: 1
Views: 102

[current_user_group_id] available to use?

I have been trying to display [current_user_group_id] in a heading template for dropdown list ajax. The result for the header is: "Test Name : Test Company : Signed: [current_user_group_id]" What can I do to show the current_user_group_id? Screenshot 2023-08-16 064635.png Also in custom HT...
by ppatel@slscorp.com
14 Aug 2023, 18:39
Forum: Discussion
Topic: How to Hide an Entity in the Menu based on User Group?
Replies: 4
Views: 178

Re: How to Hide an Entity in the Menu based on User Group?

Immediate issue resolved thanks to @Didou12! Thanks Louis!!! Under his post under Plug-Ins, I found that you could add the following javascript in custom html. <script> $('ul.sub-menu a.menu-itemsitems35').hide(); </script> This did exactly what I wanted by hiding the entity in the menu for all but ...
by ppatel@slscorp.com
14 Aug 2023, 10:01
Forum: Discussion
Topic: How to Hide an Entity in the Menu based on User Group?
Replies: 4
Views: 178

Re: How to Hide an Entity in the Menu based on User Group?

Thanks Sergey,

I figured that out. But I DO want the user to have access but hide the entity on the Menu. I want to have a limited Menu so people are not confused. Within the App, users can see and add things to the various entities that are not seen in the Menu.
by ppatel@slscorp.com
11 Aug 2023, 09:54
Forum: Discussion
Topic: How to Hide an Entity in the Menu based on User Group?
Replies: 4
Views: 178

How to Hide an Entity in the Menu based on User Group?

Hi, I have an Entity called NDA which stores information related to the non-disclosure agreement. I have User Groups (Admin, Managers, Leaders, Client), and all groups are allowed to create and update. However, I don't want the Clients to see the NDA entity in the Menu. I can change the access rules...
by ppatel@slscorp.com
10 Aug 2023, 21:50
Forum: Discussion
Topic: As Admin Unable to select multiple records and delete
Replies: 1
Views: 56

As Admin Unable to select multiple records and delete

Hi, In the Users Entity, I have added about 200 users via import. I made a mistake for about 50 of them. I selected all of the errant entries and I don't see the option to "Delete" with Selected for some reason. As shown below. I was able to do this before. I have admin access with full ri...
by ppatel@slscorp.com
10 Aug 2023, 21:36
Forum: Discussion
Topic: sub-domain extension
Replies: 2
Views: 130

Re: sub-domain extension

Thanks! I also created a redirect from test.mydomain.com to mydomain.com/test using .htaccess
by ppatel@slscorp.com
05 Aug 2023, 18:26
Forum: Discussion
Topic: Which Entity Structure to Use?
Replies: 1
Views: 118

Which Entity Structure to Use?

As I add to the app, which Entity Structure to Use? Probably a noob question...sorry in advance. In the first structure, you see that Company and Contacts are under Leads. In the Leads form, you see a drop-down of the Company or Contact (Both are Entity fields in the Leads Field configuration) but I...
by ppatel@slscorp.com
05 Aug 2023, 14:45
Forum: Discussion
Topic: ROUND in MySQL Formula Issue
Replies: 3
Views: 79

Re: ROUND in MySQL Formula Issue

Thanks @Didou12

This was a complete operator error. The first time {1} was XX.YY and this is what cemented in my brain. But I made changes and {1} evaluated to 0.YY and ROUND({1},0) returned 0! Duh! ROUND was working just fine.
by ppatel@slscorp.com
03 Aug 2023, 19:55
Forum: Discussion
Topic: ROUND in MySQL Formula Issue
Replies: 3
Views: 79

ROUND in MySQL Formula Issue

I may be doing something wrong. But I am not getting the intended result using FLOOR or ROUND. I have created a function {1} which returns non-integer like XX.YY If I create a field called MySQL Formula and put {1} in the Formula section, the field shows XX.YY. Good! Now if I place ROUND({1},0) in t...