angular-formly: templateOptions

Kent C. Dodds
InstructorKent C. Dodds
Share this video with your friends

Social Share Links

Send Tweet
Published 9 years ago
Updated 5 years ago

angular-formly templateOptions bring a great deal of power and flexibility to your forms with angular without sacrificing simplicity in your templates. The templateOptions property allows you to specify some attributes that would normally exist on your ng-model like required, maxlength, and even ng-click. It also works great with expressionProperties.

[00:01] Angular Formly gives you a lot of power with the template options property. In here, I can specify required as true with a colon, and that field gets required.

[00:10] I could also specify it as disabled, and then, I also have the ability to specify min length is six and max length is 12. Then, I'd say, "Hello, world." You see the model gets updated appropriately for that.

[00:31] Then, you can also specify pattern and a couple of other max and min, and that kind of thing. Then, you can also specify events. On click is a function that accepts the view value, model value, and the scope.

[00:47] Then, we will alert "Hello," and as soon as I click on this, I get "Hello." This is a Formly expression, instead of a function, if I can express this as a string, as a Angular statement, then, I could simply say, "model.lastname equals clicked."

[01:09] Then, if I click here, that gets prefilled with clicked. There's some magic going on here behind the curtain with Angular Formly that makes this very performant and magical.

[01:22] If you look up here, I have this run function that injects Formly config and gets the input type, which we're using in here and it gives us the template.

[01:30] Normally, with a normal directive to accomplish this, you'd have to have an NG click, NG required, NG disabled, NG min length, max length, but that's just too much overhead.

[01:40] Angular Formly helps you a lot with this. This is part of what makes creating custom templates so simple. If we look at what is logged with this input.template, all we see is an input with a class and an NG model.

[01:56] This is extremely powerful. I'll be honest, there are a couple of wrappers here for the labels and things, but for the most part, the main use case, you simply need to have some sort of control that has an NG model on it.

[02:11] Then, Angular Formly will add the NG required or simply required, whatever it is, that needs to be added to your NG model element to make this all work. That's one of the power behind template options, you can specify many things that you would expect.

[02:34] The documentation has some of the other things, and then, you also have the ability to specify your own attributes. You can specify NG model letters, and then, there's an API there for you to be able to specify your own attributes that get dynamically added to your NG model element.

[02:53] There's documentation for how you accomplish this, but that's template options with Angular Formly.

egghead
egghead
~ 2 hours ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today