/// <summary>
    /// Gets the jobs (cases) from DB by status and binds them to the main gridview
    /// </summary>
    /// <param name="caseStatus"></param>
    public void SetGVJobStatus(string caseStatus)
    {
        DataTable dt = bi.GetSubmittedJobsInfo(caseStatus);

        this.gvJobStatus.ShowHeader = true;
        this.gvJobStatus.DataSource = null;
        this.gvJobStatus.DataSource = dt;
        this.gvJobStatus.DataBind();
    }