Hi,
I want to use a dropdownlist control, but this code doesn't work:
<ej:DropDownList class="col-md-2" ID="ddlAAConGas" runat="server" SelectMethod="GetEmpresasGN" DataTextField="Nombre" DataValueField="IdEmpresa" />
The control doesn't fill and stay with the loading icon
If I use
<asp:DropDownList class="col-md-2" ID="ddlSituacionGN" runat="server" SelectMethod="GetSituacionesGN" DataTextField="SituacionGN" DataValueField="IdSituacion" />
It works perfectly
Bye