提交代码

This commit is contained in:
2025-05-19 18:02:47 +08:00
parent d3ecc94350
commit 1bb7ef4578
3 changed files with 5 additions and 5 deletions
@@ -341,7 +341,7 @@ namespace FineUIPro.Web.WeldMat.UsingSentMat
BindGrid();
foreach (GridColumn column in grid.Columns)
{
if (column.ColumnIndex < 20)
if (column.ColumnIndex < 21)
{
sb.AppendFormat("<td>{0}</td>", column.HeaderText);
}
@@ -353,7 +353,7 @@ namespace FineUIPro.Web.WeldMat.UsingSentMat
sb.Append("<tr>");
foreach (GridColumn column in grid.Columns)
{
if (column.ColumnIndex < 20)
if (column.ColumnIndex < 21)
{
string html = row.Values[column.ColumnIndex].ToString();
if (column.ColumnID == "tfNumber")