Hi I want to hide some fields when user add record. I can use permission to hide. But I want to hide field by use
register_processing_callback
adding, editing
Then you can't hide fields. You can only remove values from the record.
When create record, it show all field to user input. I want to invisible(disabled) some fields, user will input that fields in other screen.
I mean that you can't hide fields with processing callback. You should use permissions to disallow to enter a value in certain fields during addition. Then you can allow to edit those fields in edit view. On the other hand you can define your own QFfield callbacks where you'll just do nothing if you want to hide field and call default callback (or previous custom) if you want to show it. Better use permissions