I have a list with like the list below
name
family
Job
Age
PersonnelCode
And Send Data by ViewData
And I created as follows
<ejs-dropdownlist id="letterTOPerson" change="onChange" placeholder="select" dataSource="@ViewData["ListUserInOrg"]" ejs-for="@Model.Send_To">
<e-dropdownlist-fields value="PCode" text="name" ></e-dropdownlist-fields>
</ejs-dropdownlist>
I want to be able to receive other information of that user when each user is selected. Such as Job
and age
In the same view that should probably be done with JavaScript. is this possible?