我如何使用jQuery从复选框点击事件中获取父radcombobox控件对象?

时间:2012-03-23 22:56:04

标签: javascript jquery asp.net telerik

我有一个打开复选框的radcombobox。我写了一个jQuery脚本来向所有人添加一个click事件。我需要继续下一步是获取该项/复选框所在的组合框的方法。像这样:

$(."comboBoxTag.find(":checkbox").click(
        function(){
            var cboObject = $(this).???
        });

这样我可以做一些事情,比如访问像cboObject.get_items()的telerik api方法;

我将控件标记为名为“AssigneeTag”的CSS类,但是执行.closest(“。AssigneeTag”)并没有返回任何内容...

任何想法?

更新: 根据要求:

<h1>Tickets Assigned to Me</h1>
    <rad:RadListView runat="server" ID="lsvTickets">
        <ItemTemplate>
            <div id="divContainer" class="divContainer">
                <div id="divTicketHeader" class="divTicketHeader">
                    <asp:Table runat="server" ID="tblTicketHead" Width="100%" CellSpacing="0" CellPadding="5" HorizontalAlign="Center">
                        <asp:TableRow HorizontalAlign="Left">
                            <asp:TableCell  Width="25%">
                                <asp:Label ID="lblSubject" runat="server" Text='<%#Eval("Subject") %>' Font-Bold="true" />
                            </asp:TableCell><asp:TableCell Width="25%">
                                <asp:Label ID="lblStatus" runat="server" Text='<%#Eval("Status.Key") %>' />
                            </asp:TableCell><asp:TableCell Width="25%">
                                <asp:Label ID="lblReportedBy" runat="server" Text='<%#Eval("CreatedBy.Key") %>' />
                            </asp:TableCell><asp:TableCell Width="25%">
                                <asp:Label ID="lblDateOpened" runat="server" Text='<%#Eval("DateOpened") %>' />
                            </asp:TableCell></asp:TableRow></asp:Table></div><div id="divTicketBody" class="divComments">
                        <rad:RadListView runat="server" ID="lsvActions" DataSource='<%#Eval("Comments") %>' ItemPlaceholderID="ph1" ClientIDMode="Static">
                            <ItemTemplate>
                                <div id="divComment" class="divComment">
                                    <asp:Table runat="server" ID="tblComment" CellPadding="5">
                                        <asp:TableRow>
                                            <asp:TableCell Width="15%" HorizontalAlign="Center">
                                                <rad:RadBinaryImage runat="server" ID="imgCommenter" Width="50" Height="50" /><br />
                                                <asp:Label ID="Label5" runat="server" Text="[action author]" /><br />
                                                <asp:Label ID="Label6" runat="server" Text='<%#Eval("CreateDate", "{0:MMM d, yyy hh:mm}") %>'
                                                     CssClass="commenterText"/><br />
                                            </asp:TableCell><asp:TableCell>
                                                <asp:Label ID="Label7" runat="server" Text='<%#Eval("CommentText") %>' />
                                            </asp:TableCell></asp:TableRow></asp:Table></div></ItemTemplate><LayoutTemplate>
                                <center>                            
                                <div id="divAddComment" style="width: 500px;" class="CommentTopLevel">
                                    <div id="divCommentControls" style="margin: 8px 0px 8px 0px;">
                                        <asp:HiddenField runat="server" ID="hfID" Value='<%#Eval("TicketID") %>' />
                                        <rad:RadComboBox runat="server" ID="cboStatus" DataSource='<%#GetStatuses() %>' DataTextField="Status" DataValueField="Support_StatusID" CssClass="StatusTag" EnableViewState="true" />
                                        <rad:RadCombobox runat="server" ID="cboAssignTo" DataSource='<%#GetAssignees() %>' DataTextField="Name" DataValueField="Guid" ItemDataBound="Assignees_Bound" CssClass="AssigneeTag" CheckBoxes="true" OnItemChecked="AssigneeChecked" />
                                        <rad:RadTextBox runat="server" ID="txtComment" TextMode="MultiLine" Width="500" Height="100" CssClass="CommentBox" /><br />
                                    </div>

                                    <div style="height: 35px;">
                                        <div style="float:right; margin: 3px 0 0 0; ">
                                            <rad:RadButton runat="server" CssClass="submitTag" ID="btnSubmit" Text="Submit" /><br />
                                            <div class="SubmitStatus"></div>
                                        </div>
                                    </div>
                                </div>
                                </center>
                                <asp:PlaceHolder ID="ph1" runat="server" />
                            </LayoutTemplate>
                        </rad:RadListView>
                    </div>
            </div>
        </ItemTemplate>
    </rad:RadListView>

这是一个列表视图,其中包含另一个嵌套在itemtemplate中的listview。在内部列表的itemtemplate中驻留控件。我所指的组合框命名为cboAssignTo。它是一个Telerik组合框,所以它不像传统的DropDown菜单那样工作,我认为除了动态生成组合框这一事实之外真正使这一点变得复杂。我能够做一些像$(this).closest(“。rcbTag”)这样的东西来获取另一个名为cboStatus的组合框的值,但是这个其他的组合框更多,因为它有复选框。

编辑:

这是一个简单易懂的版本,我正处于什么阶段。这是由此组合框的单个实例生成的HTML:

<div id="lsvTest" class="RadComboBox RadComboBox_Default RcbTag" style="width:160px;">
    <table summary="combobox" style="border-width:0;border-collapse:collapse;table-layout:fixed;width:100%">
        <tr class="rcbReadOnly">
            <td style="margin-top:-1px;margin-bottom:-1px;width:100%;" class="rcbInputCell rcbInputCellLeft">
                <input name="lsvTest" type="text" class="rcbInput" id="lsvTest_Input" value="" style="display: block;" readonly="readonly" />
            </td>
            <td style="margin-top:-1px;margin-bottom:-1px;" class="rcbArrowCell rcbArrowCellRight">
                <a id="lsvTest_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a>
            </td>
        </tr>
    </table>

    <!-- 2012.1.215.40 -->
    <div class="rcbSlide" style="z-index:6000;">
        <div id="lsvTest_DropDown" class="RadComboBoxDropDown RadComboBoxDropDown_Default " style="float:left;display:none;">
            <div class="rcbScroll rcbWidth" style="width:100%;">
                <ul class="rcbList" style="list-style:none;margin:0;padding:0;zoom:1;">
                    <li class="rcbItem "><input type="checkbox" class="rcbCheckBox" />One</li>
                    <li class="rcbItem "><input type="checkbox" class="rcbCheckBox" />Two</li>
                    <li class="rcbItem "><input type="checkbox" class="rcbCheckBox" />Three</li>
                </ul>
            </div>
        </div>
    </div>
    <input id="lsvTest_ClientState" name="lsvTest_ClientState" type="hidden" />
</div>

看看这个,我想点击一个复选框,然后使用$(this).closest(“。RcbTag”)应该一直遍历到顶部并抓住外部div,但事实并非如此。

2 个答案:

答案 0 :(得分:0)

我使用jQuery parent()来电解决了类似问题,你试过这个吗?

答案 1 :(得分:0)

与其他问题一样,如果您坚持使用Telerik认可的方法,我认为您的生活会更轻松。以下是使用它们的方法:

<script language="javascript" type="text/javascript">
    function OnClientItemChecked(sender, eventArgs) {
        var item = eventArgs.get_item();
        var combo = item.get_comboBox(); // Now you have a reference to the parent ComboBox
    }
</script>

RadComboBox本身:

<telerik:RadComboBox ID="RadComboBox1" runat="server" 
    OnClientItemChecked="OnClientItemChecked" CheckBoxes="true">
</telerik:RadComboBox>