Ticket AS4341
Visible to All Users

TDataSet-based data controllers - Extend the Filter.OnFormatFilterTextValue event with a parameter identifying the filter condition whose value is to be formatted

created 19 years ago

In order to access the item's ItemLink and other relative properties, the event which can provide the TcxFilterCriteriaItem class object as a parameter is required. Possibly it can be additional event handler which fires after the OnFormatFilterTextValue.

Comments (1)
D D
Dennis Esmonde-White 18 years ago

    Hate to be a pain.
    Am I still the only person out there/here that needs to custom format the filter text to comply with SQL 2003 standard?
    Each time I download a new release I have to edit cxDbData.pas and recompile to meet my needs.
    It's not really a big deal, happy to do it, but it worries me, surely someone else has encountered this problem. Or do they simply say 'Ah does not work, I'm off to the next VCL Pack'?

    Answers approved by DevExpress Support

    created 12 years ago (modified 12 years ago)

    We have implemented the functionality described in this ticket. It will be included in our next update(s).

    Please check back and leave a comment to this response to let us know whether or not this solution addresses your concerns.

    Additional information:

    The Filter.OnFormatFilterTextValue event has been extended with the AItem parameter, which provides access to the filter condition whose value (passed as the AValue event parameter) is to be formatted.

      created 18 years ago (modified 12 years ago)

      Dear Dennis,
      Sorry, we haven't yet implemented this feature … just because you are the only person asking for it. Perhaps, we will implement it, but it is preceded by other items which have higher priority in our TO-DO queue. For now, we have a very long TO-DO list and all our developers are concentrated on such tasks as the Ribbon control (in particular, galleries - CS43976 ("Ribbon - Add a bar item, which represents an in-Ribbon gallery")) and our new skinning UI. These tasks have the highest priority in our development plans and, in fact, they were planned a long time ago.
      We do understand that this functionality is critical for your development, but we cannot give you any time frames for when it may be available. We have a strict policy of not announcing any specific features for any product in R&D prior to its release or imminent release. The reason for this policy is that we do not want our customers to base their development on some new functionality and components we're planning on delivering and then have big problems if for some reason we fail to do so. That's why we don't disclose release dates and why, in general, we don't describe in detail the features in each version until the release date.
      Please keep tracking this report to learn our progress about this feature.
      Updated by Serge (DevExpress Support):
      A possible workaround from report DQ10623 ("SQL 2003 Date Time format"):

      Code
      *I modified your code, which I hate doing, but had no choice. The mod is as follows:* ```delphi cxDBData.pas type TcxDBDataFilterFormatFilterItemEvent = procedure(Sender: TcxFilterCriteriaItem; const AValue: Variant; var ADisplayValue: string) of object; .... TcxDBDataFilterCriteria = class(TcxDataFilterCriteria) private FOnFormatFilterItem: TcxDBDataFilterFormatFilterItemEvent; published property OnFormatFilterItem: TcxDBDataFilterFormatFilterItemEvent read FOnFormatFilterItem write FOnFormatFilterItem; .... procedure TcxDBDataFilterCriteria.FormatFilterTextValue(AItem: TcxFilterCriteriaItem; const AValue: Variant; var ADisplayValue: string); begin if Assigned(FOnFormatFilterTextValue) then FOnFormatFilterTextValue(Self, AValue, ADisplayValue); if Assigned(FOnFormatFilterItem) then FOnFormatFilterItem(AItem,AValue,ADisplayValue); end; ``` *I am now able to implement a much more elegant solution as follow:* ```delphi procedure TMainForm.OnFormatFilterItem(Sender: TcxFilterCriteriaItem; const AValue: Variant; var ADisplayValue: string); var vColumn: TcxGridDBColumn; begin vColumn := TcxGridDBColumn(Sender.ItemLink); case vColumn.DataBinding.Field.DataType of ftDate : ADisplayValue := 'DATE '+ADisplayValue; ftTime : ADisplayValue := 'TIME '''+TimeToStr(AValue)+''''; ftGuid : ADisplayValue := 'GUID '+ADisplayValue; end; end; ``` *As you can see I have added a new published event handler, that implements TcxFilterCriteriaItem instead of the near useless TcxDBDataFilterCriteria object as per the OnFilterFormatFilterTextValue method.*
        Show previous comments (1)
        DevExpress Support Team 12 years ago

          Hello,
          Thank you for your message. I will discuss this feature with our developers and will check whether or not it is possible to speed up the implementation of this functionality. Perhaps, there were reasons for not implementing suggested code immediately.

            I would find this very useful also.

            VU VU
            Vladimir Ulchenko 12 years ago

              those who find it useful: why don't you vote it up?

              Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

              Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.