Hello,
Is it possible to change the default value for an empty ListBox?
I have would like to update from "No records found" to "Drag items here"
I see there is a NoRecordsTemplate and NoData Template but unfortunately they dont update the text. Am I doing something wrong?
<SfListBox ID="xAxisList"
@ref="XListBox"
TValue="string[]"
DataSource="@selectedXFields"
TItem="@ListData"
AllowDragAndDrop=@allowXAxisDrag
NoRecordsTemplate="Drag items here"
Scope="combined-list">
<ListBoxFieldSettings Text="Name" Value="Code" />
Cheers!