Hi.
I am using ViewBag as datasource for providing vales in dropdown called Skills
We have 9 fields like skill1, skill2.......skill9. Once we select one value at skill1 should not be displayed in dropdown skill2 and so on.
<div id="dvSkill1" class="col-sm-4">
<div class="form-group label-floating is-empty">
<ej-drop-down-list id="ddlSkill1" datasource="ViewBag.Skills" ej-for="SkillId1" change="serviceList_change"
EnablePopupResize="true" Width="100%">
<e-drop-down-list-fields text="Name" value="Id" />
</ej-drop-down-list>
</div>
</div>
<div id="dvSkill2" class="col-sm-4">
<div class="form-group label-floating is-empty">
<ej-drop-down-list id="ddlSkill2" datasource="ViewBag.Skills" enable-filter-search="true" ej-for="SkillId2"
EnablePopupResize="true" Width="100%">
<e-drop-down-list-fields text="Name" value="Id" />
</ej-drop-down-list>
</div>
</div>
<div id="dvSkill3" class="col-sm-4">
<div class="form-group label-floating is-empty">
<ej-drop-down-list id="ddlSkill3" datasource="ViewBag.Skills" enable-filter-search="true" ej-for="SkillId3"
EnablePopupResize="true" Width="100%">
<e-drop-down-list-fields text="Name" value="Id" />
</ej-drop-down-list>
</div>
How i can implement the jquery such that the dropdown should not display preselected value? as i need to update the datasource again and again
Thanks
Manish Tiwari