I have a razor page that has a ejs-dropdownlist that work fine, but when I try to use a ejs-textbox I get nothing rendered. I'm I possibly missing a lib or something. In the debug is show the line and I get no errors..
<ejs-textbox id="firstname" placeholder="First Name" floatLabelType="Auto"></ejs-textbox> Doesn't render anything
<input class="e-input" name='input' type="text" placeholder="Enter Name" /> Works fine
<form method="post">
<div asp-validation-summary="All" class="text-danger"></div>
<div class="row">
<div class="col-sm-3">
Officer: Dropdown also works fine....
<ejs-dropdownlist id="ddlOfficers" width="250" query="new ej.data.Query().addParams('sortBy', 'Name').addParams('Included', 'Active')"
change="ofcChange" placeholder="Select Officer">
<e-data-manager url="/OfcAdmin/Officers?handler=GetOfficers" adaptor="UrlAdaptor"></e-data-manager>
<e-dropdownlist-fields text="text" value="value"></e-dropdownlist-fields>
</ejs-dropdownlist>
</div>