Angular CDK: The Component Dev Kit by Jeremy Elbourn

Поделиться
HTML-код
  • Опубликовано: 11 дек 2024

Комментарии • 15

  • @ZenTrickz
    @ZenTrickz 6 лет назад +2

    I'm impressed with his ability to navigate his IDE with such dexterity! ^_^

  • @ewaschenko
    @ewaschenko 6 лет назад +3

    How are you getting the autocomplete for cdkConnectedOverlay around 10:08 nothing show for me and I'm using the Angular Language Service

  • @czarlp
    @czarlp 6 лет назад

    Amazing talk!

  • @theGoldyMan
    @theGoldyMan 4 года назад

    the CdkTrapFocus doesn't work for me, in connected overlay.

  • @abannsunny3515
    @abannsunny3515 6 лет назад +1

    The plunkers dont work any more!! How do you learn more about CDK? Any good references? Thank you.!

    • @abannsunny3515
      @abannsunny3515 6 лет назад

      To get the plunkers to work
      Change the pluker systemjs. config.js file to
      change rxjs version to this
      'rxjs': 'unpkg.com/rxjs@6.2.0',
      packages to this:
      packages: {
      // Thirdparty barrels.
      rxjs: {
      main: 'index.js',
      defaultExtension: 'js'
      },
      "rxjs/operators": {
      main: 'index.js',
      defaultExtension: 'js'
      }
      }

  • @MostafaMohamed-eh7on
    @MostafaMohamed-eh7on 5 лет назад

    great work guys , i have a question if you please help me in this
    angular Intellisense is not working i don't know why !
    can anyone tell me why this happen only with angular projects
    and other js and ts projects its IntelliSense is duplicated i don't know why !

  • @kristapstarasovs6230
    @kristapstarasovs6230 7 лет назад +1

    with what angular version is this?

  • @milenamalts2173
    @milenamalts2173 7 лет назад

    Have you tested it with Voice Over or NVDA when navigating with arrows? Does it move the focus? Or just a class?

  • @suhas.deshpande
    @suhas.deshpande 7 лет назад

    Why do you have type = button to a button component? Isn't that bit redundant?

    • @yu-hsuantsai2949
      @yu-hsuantsai2949 7 лет назад +1

      Different browsers use different default types for the button element

    • @MichaelPrentice
      @MichaelPrentice 7 лет назад +3

      If you don't do type="button", then web browsers default buttons to type="submit". Then submit buttons cause forms to be submitted when clicked. In this case, he didn't want the button to submit a form when clicked.

    • @cogsandcode
      @cogsandcode 7 лет назад

      Exactly. If a form has a button with no type attribute, some browsers will assume that it's supposed to be type="submit" and the button will submit the form. Honestly, it's a case of the browser trying to correct bad coding practices.

    •  6 лет назад

      "some browsers" including Chrome