Hi Raul,
Greetings from Syncfusion support.
Based on your shared information and code example, we suspect that you have getting empty dropdownlist after form submit even if you choose the values. You have not bound the component change event with handlechange. That is the reason you have get the null value after every form submit. We suggest you bind the change event to hook the handle change to resolve the issue.
Kindly refer the below code example:
|
<DropDownListComponent
id="games"
dataSource={sportsData}
value={value}
change={e => handleChange(e)}
placeholder="Select a game"
popupHeight="220px"
/> |
If still you have facing the issue, If possible, please reproduce the issue with above attached sample and explain the detailed issue replication steps these details help us to resolve the issue at earliest.
Regards,
Sureshkumar P