Search found 9 matches

by zandeera
08 Jan 2024, 11:20
Forum: Bug Report version 3.4.4
Topic: User roles not working as expected
Replies: 2
Views: 156

Re: User roles not working as expected

Rukovoditel344-Testing-AccessRole-screenshot conv 1.png Rukovoditel344-Testing-AccessRole-screenshot conv 2.png Rukovoditel344-Testing-AccessRole-screenshot conv 3.png Rukovoditel344-Testing-AccessRole-screenshot conv 4.png Rukovoditel344-Testing-AccessRole-screenshot conv 5.png Rukovoditel344-Test...
by zandeera
08 Jan 2024, 11:17
Forum: Bug Report version 3.4.4
Topic: User roles not working as expected
Replies: 2
Views: 156

User roles not working as expected

Hi Sergey, I have created one User Roles field, named "Roles", in entity Projects and set some roles to define access type to entity Tasks. Some scenario is not working as expected. For example: Access group Staff has one user: The Staff. This access group has no access at all to entity Ta...
by zandeera
22 Apr 2023, 06:42
Forum: Discussion
Topic: Assigning Specific Users to certain record - Think Real Estate Brokerage
Replies: 4
Views: 135

Re: Assigning Specific Users to certain record - Think Real Estate Brokerage

In property list, is it a listing agent who creates one unique property record? If yes, one property record belongs to one listing agent, right? If so, you can exclude listing agent user group in field "Parties in this transaction". Also you don't need to filter by that field in listing vi...
by zandeera
22 Apr 2023, 06:01
Forum: Discussion
Topic: how to get dynamic birthday
Replies: 10
Views: 393

Re: how to get dynamic birthday

You can achieve this by creating a new field with Dynamic Date field type, set the formula so as to get the day and month of the birthday and concatenated with current year, then convert it to UNIX timestamp. In listing, filter the new field with "Filter By Days" and set 0 as the value. B...
by zandeera
19 Apr 2023, 19:19
Forum: Discussion
Topic: Assigning Specific Users to certain record - Think Real Estate Brokerage
Replies: 4
Views: 135

Re: Assigning Specific Users to certain record - Think Real Estate Brokerage

I think the simplest way is to create field Users and assigned all related persons to specific record. It requires you to set View Assigned Only for each group in Access Configuration page. You can then configure the access to specific field for each user group to manage which person can view/edit w...
by zandeera
19 Apr 2023, 18:52
Forum: Discussion
Topic: Default order
Replies: 2
Views: 66

Re: Default order

View Configuration > Filter Panels
Click Configure in Default Filters, there you can set sorting configuration.
Is that what you're looking for?
Screenshot 2023-04-19 214233.png
by zandeera
11 Apr 2023, 15:23
Forum: Discussion
Topic: ASKING ABOUT QUERY
Replies: 2
Views: 81

Re: ASKING ABOUT QUERY

Code: Select all

SELECT FROM_UNIXTIME(field_1856,'%Y-%m-%d') AS date FROM app_entity_144 WHERE FROM_UNIXTIME(field_1856,'%Y-%m-%d')  = '2023-04-07';
by zandeera
06 Apr 2023, 22:31
Forum: Suggestions
Topic: Fieldtype star rating
Replies: 0
Views: 159

Fieldtype star rating

We need our customer to give star rating like in many e-commerce apps. Off course I can make it with a simple number but it's not visually appealing. I managed to create one but it requires a lot of JS to replace existing fieldtype elements. It will be nice if it's available as an integrated fieldty...
by zandeera
06 Apr 2023, 21:53
Forum: Discussion
Topic: Get value from previous id
Replies: 2
Views: 155

Re: Get value from previous id

Create subquery:

Code: Select all

(SELECT field_XXX FROM app_entity_YYY WHERE id<[id] ORDER BY id DESC LIMIT 1)