• ArbitraryValue@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    21
    ·
    edit-2
    17 hours ago

    Things that I wish web interface devs would just let me type, for God’s sake:

    • years
    • months
    • state abbreviations

    Just validate the input after I type it in. Don’t make me scroll through 50 different states or 100 different years.

    • TorJansen@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      3
      ·
      edit-2
      5 hours ago

      They often rely on CMS modules and plugins to take care of input like this and those programmers didn’t want to have to parse and sanitize the input, they just had to control it completely and fageddubautit

      Edit: yeah I was once one of them …

      • Pulptastic@midwest.social
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 minutes ago

        Looking at you iphone. The little price is right scroller was cute the first time but has been a pain ever since.

    • dual_sport_dork 🐧🗡️@lemmy.world
      link
      fedilink
      English
      arrow-up
      7
      ·
      edit-2
      16 hours ago

      The thing about this that really absconds with my ovine is that moronic webdevs insist on reinventing the wheel for these input fields in a manner that is inevitably both disrespectful of your screen DPI and/or aspect ratio and also fail to correctly or competently implement shortcuts or keyboard functionality – or more often, don’t even bother to do so at all – not to mention any of the user’s potential accessibility tools. Because web form controls for all of these input fields already exist.

      Earth to front end developers: You don’t need to do a halfassed job of building a drop down menu box using 3.7 megabytes of jquery and and CSS plus three application frameworks on every page load. Just put that shit in a <select> and let the browser do it for you. Knock it off already.

      HTML already includes a perfectly good date picker tag, drop down menus, spinners, radio buttons, and checkboxes.

      And if you do insist on reinventing the wheel, if the wheel you’re reinventing happens to be a non-searchable drop down menu that doesn’t even allow me to type to snap to the first letter of what I’m looking for, let alone the entire target value, I’m afraid I’m going to have to hunt you down and stick your keyboard somewhere you probably don’t want it stuck.

    • atomicbocks@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      1
      ·
      16 hours ago

      Properly implemented selection boxes do let you do this and then hit space when you are done typing.

      Properly implemented being the key element.