Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Provides the Form's data. Gets updated every time form fields change.

##### Angular

[note] **formData** does not support Angular signals. For more information, refer to the following topic: [DevExtreme Angular - Using Angular Signals with DevExtreme](/Documentation/Guide/Angular_Components/Common_Features/Using_Angular_Signals_with_DevExtreme/).
[note] **formData** does not support Angular signals. For more information, refer to the following topic: [DevExtreme Angular - Using Angular Signals with DevExtreme](/concepts/40%20Angular%20Components/40%20Common%20Features/20%20Using%20Angular%20Signals%20with%20DevExtreme.md '/Documentation/Guide/Angular_Components/Common_Features/Using_Angular_Signals_with_DevExtreme/').

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ If you want to integrate this capability into your application, you can examine

[note]

**dxForm**.[formData](/Documentation/ApiReference/UI_Components/dxForm/Configuration/#formData) does not support signals. To use signals with **formData**, implement one of the following:
**dxForm**.[formData](/api-reference/10%20UI%20Components/dxForm/1%20Configuration/formData.md '/Documentation/ApiReference/UI_Components/dxForm/Configuration/#formData') does not support signals. To use signals with **formData**, implement one of the following:

- Create a new object bound to a signal and synchronize this object with **formData** in [onFieldDataChanged](/Documentation/ApiReference/UI_Components/dxForm/Configuration/#onFieldDataChanged):
- Create a new object bound to a signal and synchronize this object with **formData** in [onFieldDataChanged](/api-reference/10%20UI%20Components/dxForm/1%20Configuration/onFieldDataChanged.md '/Documentation/ApiReference/UI_Components/dxForm/Configuration/#onFieldDataChanged'):

<!-- tab: app.component.html -->
<dx-form
Expand All @@ -44,7 +44,7 @@ If you want to integrate this capability into your application, you can examine
}


- Configure item [templates](/Documentation/ApiReference/UI_Components/dxForm/Item_Types/SimpleItem/#template) for all dxForm fields and bind signals to each component's **value** property:
- Configure item [templates](/api-reference/10%20UI%20Components/dxForm/5%20Item%20Types/SimpleItem/template.md '/Documentation/ApiReference/UI_Components/dxForm/Item_Types/SimpleItem/#template') for all dxForm fields and bind signals to each component's **value** property:

<!-- tab: app.component.html -->
<dx-form>
Expand Down
Loading