列表视图中的文本框

时间:2013-03-07 15:35:51

标签: javascript asp.net html listview textbox

我有一个ListView,其中包含一个下拉列表,4个文本框和按钮。我希望仅在value=2的每一行的下拉列表ListView时显示第四个文本框(包含在范围内)。

例如,我在ListView中显示5条记录,第2条和第3条都是value=2

这是在document.ready我预设并选择页面加载下拉列表的每个值。所以我试图显示ZipBox这样做,因为我觉得它最容易,但我也接受其他建议,因为显示框似乎不起作用。

$('.Existing').each(function() {
    var select = $(this).attr('data');
    $(this).val(select);
    //this part doesn't work below
    if(select=="2")
    {
        $('#zipBox').css({ 'visibility': 'visible' });
}
});

如果更改了下拉选项,我还需要显示文本框,请参阅下面的“尝试过这个”,但它仅适用于第一个。例如,如果我更改第5条记录的值,则会使ZipBox在第一行而不是第五行显示。

$('.Existing').change(function() {
    if ($(this).val() == '2') {
        $('#ZipBox').css({ 'visibility': 'visible' });
    }
});

这是listview:

<asp:ListView runat="server" ID="ListView1">
    <LayoutTemplate>
        <table id="tablesorter" style="border: solid 1px black; width: 55%;">
            <thead>
                <tr>
                    <th>
                        <a href="#">Country</a>
                    </th>
                    <th>
                        <a href="#">Info.</a>
                    </th>
                    <th>
                        <a href="#">Action</a>
                    </th>
                </tr>
            </thead>
            <tbody>
                <tr id="itemPlaceholder" runat="server" />
            </tbody>
            <tfoot>
            </tfoot>
        </table>
    </LayoutTemplate>
    <ItemTemplate>
        <tr>
            <td>
                &nbsp;&nbsp;<select id="Existing" data="<%# Eval("Type").ToString()%>"
                    class="Existing" style="width: 90px">
                    <option value="0">USA</option>
                    <option value="1">CAN</option>
                    <option value="2">MEX</option>
            </td>
            <td>
                <input size="4" type="text" id="city" value="<%# Eval("City")%>" />
                <input size="4" type="text" id="state" value="<%# Eval("State")%>" />
                <input size="4" type="text" id="Phone" value="<%# Eval("PhoneNbr")%>" />
                <span id="ZipBox" style="visibility: hidden">
                    <input maxlength="5" size="5" type="text" id="zip" value="<%# Eval("ZIP")%>" />
                </span>
            </td>
            <td>
                <2 buttons here>
            </td>
        </tr>
    </ItemTemplate>
</asp:ListView>

1 个答案:

答案 0 :(得分:0)

可以切换输入(使用visibility),因此不需要跨度,但要切换范围或输入,则需要class属性而不是id( id应该是唯一的,因此对多个zip字段使用#ZipBox将不起作用)

jsfiddle demo

在您的第一次传递(.each())这将设置zip可见性,我评论了将下拉值设置为data属性的部分,因为这会中断对value = 2的检查

$('.Existing').each(function () {
    var $this = $(this), // drop down
        $thisRow = $this.closest('tr'), // the drop down's row
        $thisZip = $thisRow.find('.zip'), // the zip textbox on the same row
        $thisDataType = $this.attr('data'); // data attribute contains the type

    //$(this).val(select); // type is being set to the value

    if ($this.val() == 2) {
        $thisZip.css({'visibility': 'visible'});
    }
});

对于更改事件,您可以执行几乎相同的操作,但如果选择else {}则添加MEX块,然后更改zip将再次隐藏

$('.Existing').change(function () {
    var $this = $(this), // the drop down that changed
        $thisRow = $this.closest('tr'), // the drop down's row
        $thisZip = $thisRow.find('.zip'); // the zip textbox on the same row

    if ($this.val() == 2) {
        $thisZip.css({'visibility': 'visible'});
    } else {
        $thisZip.css({'visibility': 'hidden'});
    }
});