i have a kendoreact dialog and inside this i put a dropdownlist but this don´t display the items.
my code is:
<Dialog title={"Detalle Asiento"} width="500px" onClose={this.cerrarDialogo} persist="true">
<form className="k-form">
<fieldset>
<tr>
<td className="col-xs-1">
<label className="k-form-field">
<div className="lbl1">Cuenta</div>
<DropDownList data={cmbCuentas} dataItemKey="id" textField="Descripcion" /> </label>
</td>
</tr>
</fieldset>
</form>