B2018-033 - Set the default scrunching settings.

B2018-033 - Set the scrunching check box to checked by default
B2018-033 - Base table scrunching on the last row of a range rather than the first row of a range
B2018-033 - Added debug for table scrunching.
B2018-033 - Fix pagination to account for table scrunching
This commit is contained in:
Rich
2018-03-02 18:57:57 +00:00
parent 09aa4e4ab0
commit 75124cd7e4
5 changed files with 85 additions and 14 deletions

View File

@@ -655,6 +655,9 @@ namespace VEPROMS
this.Text = "";
this.cbScrunch.Width = this.cbScrunch.Height;
this.cbScrunch.Visible = false;
// B2018-033 VCS SAG-6 Steps 3 and 9 and SACRG1 Step 13
// Initialize scrunch check box to checked
this.cbScrunch.Checked = true;
//
// btnNext
//

View File

@@ -1753,7 +1753,9 @@ namespace VEPROMS
}
// RHM20150507 Table Scrunch
private TableScrunching _DefaultScrunchingRules = TableScrunching.Phase1 | TableScrunching.Phase5 | TableScrunching.Phase2 | TableScrunching.Phase3 | TableScrunching.Phase4 | TableScrunching.Phase5 | TableScrunching.Phase6 | TableScrunching.Phase7 | TableScrunching.Phase8;
// B2018-033 VCS SAG-6 Steps 3 and 9 and SACRG1 Step 13
// Set default Scrunching flags
private TableScrunching _DefaultScrunchingRules = TableScrunching.AllPhases;
void btnPrint1_Click(object sender, EventArgs e)
{
string[] ids = txtSearch.Text.Split("\r\n ".ToCharArray());