Example #1
0
 protected virtual void OnAfterGetObjectData(QueryFilterInputEventArgs arg)
 {
     if (_AfterInputQueryParameter != null)
     {
         _AfterInputQueryParameter(this, arg);
     }
 }
Example #2
0
 private void filterForm_AfterInputQueryParameter(object sender, QueryFilterInputEventArgs arg)
 {
     if (arg.QueryParamters != null && arg.QueryParamters.Length > 0)
     {
         _QueryParamsFromQueryFilterForm = arg.QueryParamters;
         _CurrentQueryParameters         = arg.QueryParamters;
         _AsynQueryRule.CurrentQueryBehavior.PageIndex = 0;
         loadObjectData(arg.QueryParamters);
         _AsynQueryRule.CurrentFilterParams = arg.QueryParamters;
     }
 }
        void filterForm_AfterInputQueryParameter(object sender, QueryFilterInputEventArgs arg)
        {
            if (arg.QueryParamters != null && arg.QueryParamters.Length > 0)
            {
                _CurrentQueryParameters = arg.QueryParamters;
                this.ClientRuleObject.CurrentQueryBehavior.PageIndex = 0;
                LoadObjectData(arg.QueryParamters);

                this._ClientRuleObject.CurrentFilterParams = arg.QueryParamters;
            }
        }