Hi helmishariff,
Thanks for contacting Syncfusion forums.
You can get the selected value of the GDD via script in the
ClientSideOnClick event. “args._text “ returns currently selected items text. To
retrieve the currently selected items text in serverside, first append the text
to textbox and then access it in the action using its controls id. Please refer
the below given code snippet to achieve this,
<code>
[Script]
function ClientSideOnClick(sender, args) {
var
text = args._text;//return selected text
}
[Controller]
[HttpPost]
public ActionResult Index(string
genericdropdownId)
{
//genericdropdownId
returns text
return
View();
}
</code>
Kindly try the above methods and let us know if you have any
other queries.
Regards,
Varalakshmi