我有一个带有几个下拉列表的表单,如下所示:
<table>
<tr>
<th>
Student Number
</th>
<td>
<input type="text" id="StudentNumber" />
</td>
</tr>
<tr>
<th>
Student Type
</th>
<td>
<select id="StudentType">
<option value="Select">Select</option>
<option value="Freshman">Freshman</option>
<option value="Sophomore">Sophomore</option>
<option value="Junior">Junior</option>
<option value="Senior">Senior</option>
</select>
</td>
</tr>
<tr>
<th>
Status
</th>
<td>
<select id="Status">
<option value="Select">Select</option>
<option value="Enrolled">Enrolled</option>
<option value="Dropped">Dropped</option>
<option value="Probation">Probation</option>
<option value="Suspended">Suspended</option>
</select>
</td>
</tr>
</table>
我想将 HTML 下拉列表转换为 Telerik 下拉列表。将控件转换为 Telerik 需要什么?这是我第一次使用 Telerik。任何例子都会很有帮助
提前致谢