Click here to Skip to main content
15,879,326 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have changed my application to incorporate a frontend changes. I have now created HTML tables, and within these tables, i have @RenderBody()

When my webgrid shows upon my screen, the entire screen becomes clickable instead of just the individual rows within the WEBGRID.

Here is Code for the WEBGRID and for the jquery that makes it clickable:


@{ 
    var grid = new WebGrid(Model, 
                           rowsPerPage: 5, 
                           defaultSort: "projectStatus"); 
} 
 
@using (Html.BeginForm()) 
{ 
    if (ViewBag.userTypeID == null) 
    { 
        <br /> 
        <p> @Html.ActionLink("Log On", "LogOn", "Account") to GrepTech or @Html.ActionLink("Register", "Register", "Account") if you don't have an account. 
        </p> 
    } 
         
<fieldset> 
  <legend>List Of All Projects</legend> 
  <br /> 
<div id="grid"> 
 
    @grid.GetHtml(columns: grid.Columns( 
                    grid.Column("projectCode", "Project Code", canSort: true), 
                    grid.Column("projectName", "Project Name", canSort: true), 
                    grid.Column("projectStatus", "Project Status", canSort: true), 
                    grid.Column("daysLeft", "Days Remaining", canSort: true)), 
        tableStyle: "webgrid", 
        headerStyle: "webgrid-header", 
        footerStyle: "webgrid-footer", 
        selectedRowStyle: "webgrid-selected-row", 
        rowStyle: "webgrid-row-style") 
</div> 
 
<script type="text/javascript"> 
    $(function () { 
        $('tbody tr').on('hover', function () { 
            $(this).toggleClass('clickable'); 
        }).on('click', function () { 
            var self = this; 
            $.ajax( 
                        { 
                            type: "POST", 
                            url: "/Projects/AllProjectsHeaderSR", 
                            data: "projectCode=" + $(this).find('td:first').text(), 
                            success: function (data) { 
                                $('#container').html(data); 
                                $(self).unbind('click'); 
                            } 
                        }); 
        }); 
    }); 
</script> 
</fieldset>
Posted
Updated 17-Aug-12 11:13am
v2

1 solution

Changed :

$('tbody tr').on('hover', function () {


TO:
$('#grid tbody tr').on('hover', function () {
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900