Advertisement
Advertisement
| 06.24.2008 at 05:39AM PDT, ID: 23510696 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: |
private void FillTierContainerWithCheckLists(DataTable lTierAndIptInfo)
{
//***loop through the tiers based on the IPTs
foreach (ListItem itemIPT in this.iptID.Items)
{
//***only display the tier for the IPTs (teams) that are selected.
if (itemIPT.Selected)
{
CheckBoxList lTierList = new CheckBoxList();
System.Web.UI.WebControls.Label lTierLabel = new System.Web.UI.WebControls.Label();
DataRow[] lRowsFound = lTierAndIptInfo.Select("iptid = " + itemIPT.Value);
lTierList.RepeatDirection = RepeatDirection.Horizontal;
lTierList.ID = "riskManTier_" + itemIPT.Value;
lTierLabel.ID = "tierLabel_ " + itemIPT.Value;
//***filter the tiers based on the IPT we are currently looking at while looping
//***through the IPT control. This will help us know when to break to the next
//***tier row
lTierLabel.Text = lRowsFound[0]["abbrev"].ToString();
//***display IPT abbrev. in front of each IPT tier
tierContainer.Controls.Add(lTierLabel);
for(int i = 0; i < lRowsFound.Length; i++)
{ //OUndeterminedRiskBox = string.Format("<span val=0 onMouseOver=\"ddrivetip('{0}',{1},'eee')\" onMouseOut=\"hideddrivetip()\" class=riskUndetermined>" + lCurrentRisk + "</span>", lUndefRiskDef, sDefineWidth);
lTierList.Items.Add(new ListItem("<span onMouseOver=\"ddrivetip('" + lRowsFound[i]["managementoversightdefinition"].ToString() + "')\" onMouseOut=\"hideddrivetip()\" >" + lRowsFound[i]["tiervalue"].ToString() + "</span>", lRowsFound[i]["tierid"].ToString()));
//***check the item...all items are initially checked
lTierList.Items[i].Selected = false;
}
//***make checkbox list appear to the right of the label
tierContainer.Controls.Add(lTierList);
}
}
}
|