I want the jquery file run every time the Grid is populated and the jquery file should loop through the gridview and perform some action based on certain conditions. In my grid I have a column called StatusId in the gridview and based on Statuid I want to set the text for the label which is inside another column. I am trying to accomplish this using jQuery. I don't know where I am going wrong.
I have an external JS file called Setstatus.js
StatusId is a bound field in the gridview. lblStatus is a label in the template field of the gridview.
$(document).ready(function () {
$('#<%=gvAsgnments.ClientID%>')
.find('tr')
.each(function (row) {
$(this).each(function (col) {
if (($.trim($(this).find("input[id*='StatusId']").val() === 0))) {
$("input[id*='lblStatus']", $(this)).val('New');
$("input[id*='StatusId']", $(this)).style.display = 'block';
}
});
});
});
I am referring to Setstatus.js in my aspx page
<script type="text/javascript" src="Scripts/Admin.js" ></script>
The jquery file does not produce any results. What am I misssing.
sample HTMl:
<div>
<table class="CNIGridView" cellspacing="0" rules="all" align="center" border="1" id="MainContent_gvAsgnments" style="border-collapse:collapse;">
<tr class="CNIGridViewHeader">
<th scope="col" abbr="Status"> </th>
<th scope="col" abbr="Claim">Claim</th>
<th scope="col" abbr="Claimant">Claimant</th>
<th scope="col" abbr="Date">Date</th>
<th scope="col">StatusId</th>
</tr>
<tr class="CNIGridViewRow">
<td>
<span id="MainContent_gvAdminActiveAsgnments_lblStatus_0"></span>
</td>
<td>
<span id ="MainContent_gvAdminActiveAsgnments_lblClaim_0">MH001025</span>
</td>
<td>
<span id="MainContent_gvAdminActiveAsgnments_lblClaimant_0">Deborah</span>
</td>
<td>10/2/2011 12:00:00 AM</td>
<td>0</td>
</tr>
</table>
</div>
Thanks in advance
BB
