Custom fields for Powermail in TYPO3 - typo3

I am working with powermail forms, where I need a custom multiselect powermail field.
Any idea how to configure the field?
I have added tx_powermail.flexForm.type.addFieldOptions.new = New Field in TCEFORM file, and I got new field in powermail form but how can i configure multiselect in this field.

Did you see the documentation part on https://github.com/einpraegsam/powermail/blob/develop/Documentation/ForDevelopers/AddNewFields.md?
There is also a part that describes the datatype that can be set via TSConfig.

Related

Powermail 7.3 receiver attachment from hidden input field

i need a multiple file upload with drag&drop in a powermail form. I made it with jQuery that added the files to a hidden iput field. Does anyone know how i can attach these files to the receiver email. i tried with typoscript ..addAttachment and ...data = GP:tx_powermail... but it seems to work only with a static file.
I would first try to use the Powermail default https://docs.typo3.org/typo3cms/extensions/powermail/stable/ForEditors/AddANewForm/FieldFile/Index.html - then extend the frontend from there.

TYPO3 v9.5 no URL Segment [slug] field visible in Page Edit

After upgrading from Typo3v9 to v9.5, I still do not see the URL Segment [slug] field .
The field has been added to the "pages" table under the column/field "slug" and also been populated, but the field is not visible in the BE and the links not updated.
Is there documentation/configuration I am missing?
You need to add a Site Configuration for your page tree in the new Sites module of the TYPO3 backend.
Only then the new slug field becomes visible in backend forms and the URL segments get used in the frontend instead of the old default index.php?id=1 links.

Create own validators with Typo3 8LTS SYSEXT:form

For a long time I used EXT:formhandler for custom forms. In formhandler it was very easy to build custom validators like:
Checkbox "phone" is checked, then input-field phone is required.
Can someone show me an example of this custom validator with the new SYSEXT:form in Typo3 8LTS with SYSEXT:form?
Thanks a lot.

NO Flexform (pi_flexform) Field in BE Permission Settings

I developed a FE Plugin which should be configurable by the editor via flexform settings (pi_flexform field in the tt_content table). Similar to tt_news or news Extension. Everything working great as Admin, but it is not possible to active the Flexform for another user... The plugin can be selected but the flexform will not render... How can I enable the flexform field.
Add. Comment: There is no table field pi_flexform in the permission settings for a BE User Group!
Please Help
Working and tested TYPO3 6.2.5 und 7.6.9
German Maillist Question:
https://forum.typo3.org/index.php/t/215053/
Please check if the TCA for the field has a setting $GLOBALS[TCA][<table>][columns][<field>][exclude] = 1. Otherwise it will not be listed in the BE user settings.

Displaying user specific Form Fields in TCA TYPO3

Is there a way I can change the Form fields and options depending on the current user?
Like for instance, if the current user is just a Simple_User he/she should not be shown the option "evaluate". But for an Admin, the evaluate option should be available.
How can I achieve this using TCA for creating backend forms for a plugin ?
In the TCA there is the option "exclude", which gives you the option to set the permission for BackendUser or BackendGroup if the user is allowed to view/edit the field.