I have an Autocomplete control on a cshtml page.
<div class="card card-info">
<div class="card-header">Select a New Location AND / OR Mark Inactive</div>
<div class="card-body">
<div>
<ejs-autocomplete id="autoLocation" placeholder="Start typing..." popupHeight="220px">
<e-data-manager adaptor="WebApiAdaptor" url="/Home/getlocationlist" crossDomain="false"></e-data-manager>
<e-autocomplete-fields value="LocationName"></e-autocomplete-fields>
</ejs-autocomplete>
</div>
<br />
<label for='chkInactive'>Mark Inactive</label>
<input type='checkbox' id='chkInactive' class='form-control' />
</div>
</div>
I have the required references to the material css, and the ejs script file on the layout.cshtml.
For some reason, I cannot see the Autocomplete control on the page when it runs but I can see the markup when I inspect the page with web developer tools.
Thoughts?