Beispiel #1
0
        private static bool UpdateRowFilter(GridPanel panel)
        {
            if (panel.FilterEval == null)
            {
                try
                {
                    panel.FilterEval = new FilterEval(
                        panel, null, panel.GetFilterMatchType(), panel.FilterExpr);
                }
                catch
                {
                    return (false);
                }
            }

            return (true);
        }