我在MVC中有用于显示数据的网格和用于编辑此网格上的字段的编辑按钮。 但是我想把dropdown(数据将从数据库中填充)而不是Textbox for Country,State列。我该怎么做?
grid1.Column("Name", "Name", format: @<text> <span class="display-mode"> <label id="lblName" >@item.Name</label> </span> <input type="text" id="Name" value="@item.Name" class="edit-mode" /></text>, style: "col2Width"),
grid1.Column("Age", "Age", format: @<text> <span class="display-mode"> <label id="lblAge" >@item.Age</label> </span> <input type="text" id="Age" value="@item.Age" class="edit-mode" /></text>, style: "col2Width"),
grid1.Column("Country", "Country", format: @<text> <span class="display-mode"> <label id="lblCountry" >@item.Country</label> </span> <input type="text" id="Country" value="@item.Country" class="edit-mode" /></text>, style: "col2Width"),
grid1.Column("State", "State", format: @<text> <span class="display-mode"> <label id="lblState" >@item.State</label> </span> <input type="text" id="State" value="@item.State" class="edit-mode" /></text>, style: "col2Width"),