From 4998b0d741992d02daf3d77af07b013e82e50957 Mon Sep 17 00:00:00 2001 From: Vlada Skorokhodova Date: Fri, 6 Dec 2024 10:48:00 +0400 Subject: [PATCH] Add split --- apps/demos/Demos/Chat/AIAndChatbotIntegration/description.md | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/description.md b/apps/demos/Demos/Chat/AIAndChatbotIntegration/description.md index 2b38c1c6abc..18824c42ff8 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/description.md +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/description.md @@ -3,6 +3,7 @@ This demo uses an AI service and the DevExtreme Chat component to create a chatb ## Handling dataSource (reloadOnChange: false) The Chat component's [dataSource](/Documentation/ApiReference/UI_Components/dxChat/Configuration/#dataSource) is a [CustomStore](/Documentation/ApiReference/Data_Layer/CustomStore/) that implements its own load and insert functions. The Chat deactivates [reloadOnChange](/Documentation/ApiReference/UI_Components/dxChat/Configuration/#reloadOnChange) to push updates directly into the store and update the conversation manually. See the [onMessageEntered](/Documentation/ApiReference/UI_Components/dxChat/Configuration/#onMessageEntered) event handler and the `processMessageSending` function to review the code that manages data transfer between the Chat and its data store. + ## Custom Message Template