Browse Source

Merge branch 'OTSRelease3_2' of http://36.129.169.60:30080/gogsadmin/OTS into OTSRelease3_2

GSP 1 month ago
parent
commit
7796e57e90

+ 8 - 1
OTSIncAReportApp/1-UI/Control_Grids/ParticlesGridDevidePage/ParticlesGridDevidePage.cs

@@ -1713,8 +1713,15 @@ namespace OTSIncAReportGrids
 					}
 				}
 			}
-        
 
+			DataRow newRowInvalid = dt_ClassifySTD.NewRow();
+			newRowInvalid["STDId"] = -1;
+			newRowInvalid["StrName"] = "Invalid";
+			newRowInvalid["Color"] = "#000000";
+			newRowInvalid["GroupId"] = -1;
+			newRowInvalid["GroupName"] = "Invalid";
+			newRowInvalid["GroupColor"] = "#000000";
+			dt_ClassifySTD.Rows.Add(newRowInvalid);
 			return dt_ClassifySTD;
         }