下拉列表并在html中并排输入

时间:2019-07-19 20:55:11

标签: html html-table jquery-ui-multiselect

将表放入div,并在跨度中并排输入类型字段

我有一些HTMl:

<div div style="margin-top:0" class="right clientSelector">
            <span style="float:right">
  <input type="text" id="searchfiter" maxlength="25" placeholder="Filter by keyword.." />
                    @{ Html.RenderPartial("_Testview"); }


            </span>
        </div>

_Testview使用jquery multiselect插件显示一个多复选框,该复选框具有以下代码:

<div  id="selectorView">
        <table>
            <tbody>
                <tr id="multiselectDropdown">
                    <td>
                        <select Name="list" id="sharedMultiSelect" 
              multiple="multiple" class="ui-multiselect">
                               @{int i = 0;}
                                @foreach (Models.Item i in Model)
                                {
                                    string selected = i.Id == Model[i].Id ? 
                                    "selected=selected" : string.Empty;
                                    <option value="@i.Id" @selected>@i.Id - 
                                   @i.Name</option>
                                    i++;
                                }
                            </select>        
                        </td>
                    </tr>
                </tbody>
            </table>        
        </div>

我正在尝试同时显示此多选复选框和过滤器框,但它会像这样出现。

enter image description here

有人可以帮我吗?

0 个答案:

没有答案