Will discuss how to install the highlighter in a different post.
/// <summary>
/// Fetches number of scripts
/// </summary>
/// <param name="rowIndex">Row index where number of scripts would be placed</param>
private void DisplayNoOfScripts(int rowIndex)
{
int totalScripts = 0;
string filterScript = string.Format(@"{0} NOT LIKE NULL"
, Admin_Script.script_name.ToString(),);
DataRow[] dr = dtScripts.Select(filterScript);
totalScripts = dr.Length;
dgvCategoryCountry.Rows[rowIndex].Cells[COL_DETAIL_SCRIPTS].Value = totalScripts;
}
No comments:
Post a Comment