Skip to main content

Posts

Showing posts with the label Reference variable

What Is a Template Reference variable?

Template Reference variable -  A template reference variable is a way of capturing a reference to a specific element, component , directive , and pipe so that it can be used someplace in the same  template HTML . You should declare a reference variable using the  hash symbol (#) . The Angular components and directives only match selectors for classes that are declared in the Angular module. Template Reference Variable Syntax  – You can use a template reference variable by two ways. 1.       Using hash symbol (#) 2.       Using reference symbol (ref-) The following examples of specifying a template reference variable using Input Text Box  – I have declared a reference variable “cellnumber” using the  hash symbol (#)  and  reference symbol (ref-) . < input   type = "text"   ref-cellnumber >  //cellnumber will be a template reference variable. And ...