B2018-134 when searching specifically for Outside Transitions, we need to pass an empty list of procedure sets to the stored procedure, so that it will look at all of procedure sets. B2018-132 Removed the extra number when building of the step element panel title. C2018-032 Changed to label next to the Transition Type list to “Type” and the label next to the Transition Category to “Category”.
This commit is contained in:
@@ -1416,6 +1416,9 @@ namespace Volian.Controls.Library
|
||||
sep = ",";
|
||||
}
|
||||
}
|
||||
// B2018-134 to search specifically for Outside Transitions, set docVeronList to empty string so that all procedure sets are considered
|
||||
if (cbxTranCategory.SelectedItem.ToString() == "Outside")
|
||||
docVersionList = "";
|
||||
// added TypeSearchList for bug fix B2015-055
|
||||
SearchResults = ItemInfoList.GetListFromTransitionSearch(docVersionList, cbxTranFormat.SelectedIndex - 1, cbxTranCategory.SelectedItem.ToString() == "All" ? "" : cbxTranCategory.SelectedItem.ToString(), TypeSearchList);
|
||||
cmbResultsStyleIndex = 3; // display step text in results
|
||||
@@ -1828,7 +1831,7 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
// show how many selected whether pannel is expanded or not
|
||||
//xpStepTypes.TitleText = string.Format("{0} Step Styles Selected", lstCheckedStepTypes.Count);
|
||||
xpStepTypes.TitleText = string.Format("{0} Step Element{0} Selected", lstCheckedStepTypes.Count, (lstCheckedStepTypes.Count > 1)?"s":"");
|
||||
xpStepTypes.TitleText = string.Format("{0} Step Element{1} Selected", lstCheckedStepTypes.Count, (lstCheckedStepTypes.Count > 1)?"s":""); // B2018-132 changed second {0} to {1}
|
||||
xpStepTypes.TitleStyle.BackColor1.Color = Color.PapayaWhip;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user