Page 1 of 1
Hide individual form fields for users AND Rearrange fields?
Posted: Sun Mar 21, 2021 8:25 pm
by Olikun
Hi,
I'm back with a new question
(Sorry, my english is not good. I use the google translator)
I don't know exactly how to explain it well, but I'm trying.
I have one main forum that is the production log. Only I can see that.
It contains information from the "Production" and "Dispatch" departments.
Each department should have its own form. You do not see the entries from the other department.
I have already learned in the forum how to hide individual form fields from users, that works very well.
The problem is, I want to rearrange the fields.
I took a few pictures for it so that you can understand it better

Re: Hide individual form fields for users AND Rearrange fiel
Posted: Mon Mar 22, 2021 2:39 am
by kev1n
To set a new position, use:
Code: Select all
$('#your_object_id').css({
top: '100px',
left: '80px'
});
Re: Hide individual form fields for users AND Rearrange fiel
Posted: Mon Mar 22, 2021 2:07 pm
by Olikun
thanks, but where and how do I have to enter this now?
Re: Hide individual form fields for users AND Rearrange fiel
Posted: Mon Mar 22, 2021 2:11 pm
by kev1n
Either you create individual/different forms for each departement or you add the show/hiding logic in the form's Custom Code.
Re: Hide individual form fields for users AND Rearrange fiel
Posted: Mon Mar 22, 2021 2:36 pm
by Olikun
I still don't understand that
I would like individual forms for the departments. These forms should have access to the main form
like in my picture
How do I connect a new form to the main forum?
Can you maybe do an example in your demo if you have the time?
Re: Hide individual form fields for users AND Rearrange fiel
Posted: Tue Mar 23, 2021 9:04 am
by kev1n
I would like individual forms for the departments. These forms should have access to the main form
In what way should they have access to the main form?
If you create separate forms for each deparatment, you can arrange the fields for each for as you want.
And each form is connected to the same table. Maybe I don't understand exactly what you want.
You could join Discrod to discuss it (I also speak German if that helps)
Re: Hide individual form fields for users AND Rearrange fiel
Posted: Wed Mar 24, 2021 7:50 pm
by Olikun
kev1n wrote:I would like individual forms for the departments. These forms should have access to the main form
In what way should they have access to the main form?
If you create separate forms for each deparatment, you can arrange the fields for each for as you want.
And each form is connected to the same table. Maybe I don't understand exactly what you want.
You could join Discrod to discuss it (I also speak German if that helps)
it works now, thanks for your help
