Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a toggle button which toggles on a single button through 4 states!

The toggle button is in a GridView which in turn is nested within a FormView. The button works well in a HTML page and submits the value into a textbox as required when each one of the 4 images are selected. However it will not work when in the GridView! Can anybody assist or is there any known issues I should know about?

<script type="text/javascript">
   $(document).ready(function() {
     $(".imageButton").ready(function() {
           $("img").click(function() {
               if ($(this).attr("src") == "../../../images/tick_50.png") {
                    $(this).attr("src", '../../../images/excl_mark_50.png'); //orange image
                     $(this).parent().siblings("input").attr("value", '2');
                 } else if ($(this).attr("src") == "../../../images/excl_mark_50.png") {
                     $(this).attr("src", '../../../images/cross_50.png'); //red image
                     $(this).parent().siblings("input").attr("value", '3');
                 } else if ($(this).attr("src") == "../../../images/cross_50.png") {
                     $(this).attr("src", '../../../images/absent_50.png'); //blue image
                     $(this).parent().siblings("input").attr("value", '4');
                 } else if ($(this).attr("src") == "../../../images/absent_50.png") {
                     $(this).attr("src", '../../../images/tick_50.png'); //green image
                     $(this).parent().siblings("input").attr("value", "1");
                }
           });
     });

});
</script>



<asp:FormView ID="FormView1" runat="server" DataSourceId="SqlDataSource1"
                DataKeyNames="tt_id,s_id,n_id,o_id" AllowPaging="false">

   <ItemTemplate>

                    <br />

  <asp:UpdatePanel ID="UpdatePanel2" runat="server">
   <ContentTemplate>
    <asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AutoGenerateColumns="False"
        CssClass="rounded-corner" DataKeyNames="tt_id,s_id,n_id,o_id" 
           ShowFooter="True" >
        <Columns>



            <asp:TemplateField HeaderText="Results" SortExpression="outcome" HeaderStyle-Font-Bold="true" >
                <EditItemTemplate >
                <div class="imageButton"><a href="#"> <asp:Image ID="imgStatusEdit" runat="server" ImageURL='<%# GetImage(CType(Eval("o_id"),Integer)) %>' /></a>
                    <asp:TextBox ID="txtOutcome" runat="server"></asp:TextBox></div>





                </EditItemTemplate>
                <ItemTemplate>
     <asp:Image ID="imgStatus" runat="server" ImageURL='<%# GetImage(CType(Eval("o_id"),Integer)) %>' />
                    <%--<asp:Label ID="Label2" runat="server" Text='<%# Bind("o_id") %>'></asp:Label>--%>

                </ItemTemplate>
                <HeaderStyle Font-Bold="True" />
                <ItemStyle Width="67px" />
            </asp:TemplateField>
            <asp:TemplateField HeaderText="Notes" SortExpression="notes" ItemStyle-Width="" HeaderStyle-Font-Bold="true">
                <EditItemTemplate>
                    <asp:TextBox ID="txtNotes" runat="server" TextMode="MultiLine" Text='<%#Eval("notes")%>'></asp:TextBox>
                </EditItemTemplate>
                <ItemTemplate>
                    <asp:Label ID="Label1" runat="server" Text='<%# Eval("notes")%>'></asp:Label>
                </ItemTemplate>
                <HeaderStyle Font-Bold="True" />
            </asp:TemplateField>
            <asp:CommandField ButtonType="Link" UpdateText="Update" CancelText="Cancel" 
                EditText="Edit" ShowEditButton="True" />
        </Columns>


    </asp:GridView>               
      </ContentTemplate>
    </asp:UpdatePanel>              
             </ItemTemplate>
</asp:FormView>
share|improve this question

1 Answer

$(document).ready(function () {
            $('.imageButton').find('img').on('click', function () {
                if ($(this).attr('src') == '../../../images/tick_50.png') {
                    $(this).attr('src', '../../../images/excl_mark_50.png'); //orange image
                    $(this).parents('.imageButton').find('input').val('2');
                } else if ($(this).attr('src') == '../../../images/excl_mark_50.png') {
                    $(this).attr('src', '../../../images/cross_50.png'); //red image
                    $(this).parents('.imageButton').find('input').val('3');
                } else if ($(this).attr('src') == '../../../images/cross_50.png') {
                    $(this).attr('src', '../../../images/absent_50.png'); //blue image
                    $(this).parents('.imageButton').find('input').val('4');
                } else if ($(this).attr('src') == '../../../images/absent_50.png') {
                    $(this).attr('src', '../../../images/tick_50.png'); //green image
                    $(this).parents('.imageButton').find('input').val('1');
                }
            });
        });
share|improve this answer
try this and see. u r using master page? in browser right click and view source code. that code u can paste in jsfiddle.net? – ThulasiRam May 10 '12 at 11:52
Sorry about the wasting you time! Eventually find a typo in the original code and as soon as I rectified it the buttons worked. Thanks all the same – theBo May 10 '12 at 18:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.