Greetings all,
I am attempting to have the same select list display on one page via MVC Display Templates. So far I've only been able to get one of the select lists to display at a time. Is this functionality not allowed. See my code example below:
<div class="row"> <div class="">@Html.DisplayFor(m => m.AgentSelector)</div> </div><div class=""><p> a bunch of misc. data is here </p></div> <div class="row"> <div class="">@Html.DisplayFor(m => m.AgentSelector)</div> </div>
The first one works. The second one does not. Is there a way to get this to work.
