This commit is contained in:
高飞 2025-08-23 15:21:45 +08:00
parent 50f8324bfc
commit dd430c9b97
1 changed files with 2 additions and 2 deletions

View File

@ -342,7 +342,7 @@ namespace FineUIPro.Web.WeldMat.UsingSentMat
BindGrid(); BindGrid();
foreach (GridColumn column in grid.Columns) foreach (GridColumn column in grid.Columns)
{ {
if (column.ColumnIndex < 22) if (column.ColumnIndex < 23)
{ {
sb.AppendFormat("<td>{0}</td>", column.HeaderText); sb.AppendFormat("<td>{0}</td>", column.HeaderText);
} }
@ -354,7 +354,7 @@ namespace FineUIPro.Web.WeldMat.UsingSentMat
sb.Append("<tr>"); sb.Append("<tr>");
foreach (GridColumn column in grid.Columns) foreach (GridColumn column in grid.Columns)
{ {
if (column.ColumnIndex < 22) if (column.ColumnIndex < 23)
{ {
string html = row.Values[column.ColumnIndex].ToString(); string html = row.Values[column.ColumnIndex].ToString();
if (column.ColumnID == "tfNumber") if (column.ColumnID == "tfNumber")