Having trouble getting help?
Contact Support
Contact Support
Customizing Appearance of Suggestions
10 Mar 20255 minutes to read
The ShowSuggestionOnPopup property in Syncfusion® React Smart TextArea allows you to control how text suggestions are displayed to the users.
- If
ShowSuggestionOnPopup
isEnable
, suggestions displayed in the pop-up window
function SmartTextarea() {
return (
<div className='control-pane'>
<div className='control-section'>
<div className="content-wrapper smart-text">
<div className='smart-component'>
<SmartTextAreaComponent
id='smart-textarea'
placeholder={'Enter your queries here'}
floatLabelType={'Auto'}
rows={5}
userRole={'Employee communicating with internal team'}
UserPhrases={phrasesData}
aiSuggestionHandler={serverAIRequest}
ShowSuggestionOnPopup={'Enable'}
></SmartTextAreaComponent>
</div>
</div>
</div>
</div>
);
}
export default SmartTextarea;
- If
ShowSuggestionOnPopup
isfalse
, suggestions displayed inline.
function SmartTextarea() {
return (
<div className='control-pane'>
<div className='control-section'>
<div className="content-wrapper smart-text">
<div className='smart-component'>
<SmartTextAreaComponent
id='smart-textarea'
placeholder={'Enter your queries here'}
floatLabelType={'Auto'}
rows={5}
userRole={'Employee communicating with internal team'}
UserPhrases={phrasesData}
aiSuggestionHandler={serverAIRequest}
ShowSuggestionOnPopup={'Disable'}
></SmartTextAreaComponent>
</div>
</div>
</div>
</div>
);
}
export default SmartTextarea;
By default showSuggestionOnPopup
is None
.