From 4e3310708e59593eb8659121f9037ca2e6aa6904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sinan=20=C3=96zt=C3=BCrk?= Date: Tue, 5 Mar 2024 14:55:35 +0300 Subject: [PATCH] Update formText and tooltip properties in Dynamic-Form-Extensions.md --- docs/en/UI/Angular/Dynamic-Form-Extensions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/UI/Angular/Dynamic-Form-Extensions.md b/docs/en/UI/Angular/Dynamic-Form-Extensions.md index bef36049c1..2fb73a6fac 100644 --- a/docs/en/UI/Angular/Dynamic-Form-Extensions.md +++ b/docs/en/UI/Angular/Dynamic-Form-Extensions.md @@ -184,8 +184,8 @@ As you see, passing `type` and `name` is enough to create a form prop. Here is w - **options** is a callback that is called when a dropdown is needed. It must return an observable. (_default:_ `undefined`) - **autocomplete** will be set as the `autocomplete` attribute of the input for the field. Please check [possible values](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#Values). (_default:_ `'off'`) - **isExtra** indicates this prop is an object extension. When `true`, the value of the field will be mapped from and to `extraProperties` of the entity. (_default:_ `undefined`) -- - **formText** is the definition placed under the field . (_default:_ `undefined`) -- - **tooltip** is the tooltip for the field placed near of the label (_default:_ `undefined`) +- **formText** is the definition of the field. Placed under the field. (_default:_ `undefined`) +- **tooltip** is the tooltip for the field placed near of the label (_default:_ `undefined`) > Important Note: Do not use `record` property of `PropData` in create form predicates and callbacks, because it will be `undefined`. You can use it on edit form contributors though. @@ -239,7 +239,7 @@ const options: FormPropOptions = { }, autocomplete: 'off', isExtra: true, - template: undefined | Type, + template: undefined | Type, // Custom angular component tooltip: { text: 'Default::MyPropName_Tooltip', placement: 'top' }, formText: 'Default::MyPropName_Description', };