lu
2025-03-22 09b9f82bc99868fe0ea90525d0b732618c5495cb
DevApp/Gs.DevApp/UserControl/ShowFilter.cs
@@ -42,7 +42,7 @@
            btnEsc.Click += BtnEsc_Click;
            btnQuery.Click += BtnQuery_Click;
            //
            gridView1.IndicatorWidth=gvTable.IndicatorWidth=gvQuery.IndicatorWidth = 50;
            gridView1.IndicatorWidth = gvTable.IndicatorWidth = gvQuery.IndicatorWidth = 50;
            gridView1.CustomDrawRowIndicator += (s, e) =>
            {
                if (e.Info.IsRowIndicator && e.RowHandle >= 0)
@@ -120,13 +120,12 @@
        private void getPageList()
        {
            foreach (GridColumn col in _columns)
                if (col.Tag != null && col.Tag.ToString().StartsWith("query"))
                if (col.Tag != null && !string.IsNullOrEmpty(col.Tag.ToString()))
                {
                    var item = new CboItemEntity();
                    item.Text = col.Tag.ToString().Replace("query_", "") +
                                "(" + col.Caption + ")";
                    item.Text = col.Tag.ToString() + "(" + col.Caption + ")";
                    //item.Value = col.FieldName;
                    item.Value = col.Tag.ToString().Replace("query_", "");
                    item.Value = col.Tag.ToString();
                    repositoryItemComboBox1.Items.Add(item);
                }
@@ -194,6 +193,7 @@
            {
                e.Value = e.Value.ToString();
                e.Handled = true;
            }
        }