ICEfaces
  1. ICEfaces
  2. ICE-9742

Support for IE10 clear icon for inputFields in ace:dataTable filter input field

    Details

    • Type: Improvement Improvement
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: EE-3.3.0.GA_P01
    • Fix Version/s: EE-3.3.0.GA_P02, 4.0
    • Component/s: ACE-Components
    • Labels:
      None
    • Environment:
      ace components IE10
    • Assignee Priority:
      P3
    • Salesforce Case Reference:

      Description

      in IE10 an input field will render with a little 'x' icon at the right side of the input field.
      For ace:dataTable filter inputs, the x will clear the field but the dataTable will not reset to a blank filter value.

      The javascript for the filter event (change) only listens for the following events:-
       else if (this.cfg.filterEvent == "change")
              this.element.on('keyup', this.filterSelector, function (event) {
                  var _event = event;
                  if (event.which == 8 || event.which == 13 || event.which > 40 || event.isTrigger) {
                      if (_self.delayedFilterCall)

      ....
      note that all of these are for keyboard manipulation (keypress, backspace, etc).
      might want to check the event 'oninput" as per this link:- http://stackoverflow.com/questions/14700466/attach-event-to-clear-icon-in-ie10-textbox
      or more comprehensive apporach that will also include mobile devices (?).

        Activity

        Hide
        Mircea Toma added a comment - - edited

        Fixed search string used for searching filter input elements in ee-3.3.0 maintenance branch.

        Show
        Mircea Toma added a comment - - edited Fixed search string used for searching filter input elements in ee-3.3.0 maintenance branch.
        Hide
        Mircea Toma added a comment -

        Detect when clear icon is pressed by registering an 'oninput' callback with the autocomplete's input element.

        Show
        Mircea Toma added a comment - Detect when clear icon is pressed by registering an 'oninput' callback with the autocomplete's input element.
        Hide
        Ken Fyten added a comment -

        ace:selectMenu has similar functionality to autocomplete and may also need this fix. Please review.

        Show
        Ken Fyten added a comment - ace:selectMenu has similar functionality to autocomplete and may also need this fix. Please review.
        Hide
        Mircea Toma added a comment -

        IE will not show the 'clear' button when selectMenu is modified, most probably because you cannot enter text instead you need to select an option.

        Show
        Mircea Toma added a comment - IE will not show the 'clear' button when selectMenu is modified, most probably because you cannot enter text instead you need to select an option.
        Hide
        Liana Munroe added a comment -

        Confirmed fixed, Icefaces ee-3.3.0 maintenance branch r40796, IE 10/11.

        Show
        Liana Munroe added a comment - Confirmed fixed, Icefaces ee-3.3.0 maintenance branch r40796, IE 10/11.

          People

          • Assignee:
            Mircea Toma
            Reporter:
            Judy Guglielmin
          • Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: