Attributes
Attributes are just like apex class member variables which holds some value and can be used in performing any operation.
Same like apex class member variable, you need to define name of attribute, datatype of attribute and you can also define default value which is optional.
Below is syntax to define attribute:
<aura:attribute name="firstname" type="string" default="Sunil"/>
Other attributes are:
Please refer below URL for more information on basic data types:
Component Attributes Types
Note:
Salesforce recommend using type="Map" instead of type="Object" to avoid some deserialization issues on the server. For example, when an attribute of type="Object" is serialized to the server, everything is converted to a string. Deep expressions, such as v.data.property can throw an exception when they are evaluated as a string on the server. Using type="Map" avoids
these exceptions for deep expressions, and other deserialization issues.
Checking for Types
To determine a variable type, use "typeof" or a standard JavaScript method instead. The "instanceof" operator is unreliable due to the potential presence of multiple windows or frames.
Expression
Expression are kind of formula which can be used within expression delimiters (“{!” and “}”)in expressions, you can specify attributes or different operators to give you output.
<aura:attribute name="msg" type="String"/>
<p>{!'Hello! ' + v.msg}</p>
Value Providers
Value providers helps you to access attributes values and you can use them either in component markup or in JavaScript functions. Using value providers, you can either set or get attributes values.
<aura:attribute name="msg" type="String"/>
<p>{!'Hello! ' + v.msg}</p>
var msgValue = component.get("v.msg")
component.set("v.msg","Sunil Kumar");
Attributes are just like apex class member variables which holds some value and can be used in performing any operation.
Same like apex class member variable, you need to define name of attribute, datatype of attribute and you can also define default value which is optional.
Below is syntax to define attribute:
<aura:attribute name="firstname" type="string" default="Sunil"/>
Other attributes are:
- access- Indicates whether the attribute can be used outside of its own namespace. Possible values are public (default), and global, and private.
- required - If it is required to specify the value of attribute. The default is false.
- description - Specify the purpose and usuage of attribute.
Please refer below URL for more information on basic data types:
Component Attributes Types
Note:
Salesforce recommend using type="Map" instead of type="Object" to avoid some deserialization issues on the server. For example, when an attribute of type="Object" is serialized to the server, everything is converted to a string. Deep expressions, such as v.data.property can throw an exception when they are evaluated as a string on the server. Using type="Map" avoids
these exceptions for deep expressions, and other deserialization issues.
Checking for Types
To determine a variable type, use "typeof" or a standard JavaScript method instead. The "instanceof" operator is unreliable due to the potential presence of multiple windows or frames.
Expression
Expression are kind of formula which can be used within expression delimiters (“{!” and “}”)in expressions, you can specify attributes or different operators to give you output.
<aura:attribute name="msg" type="String"/>
<p>{!'Hello! ' + v.msg}</p>
Value Providers
Value providers helps you to access attributes values and you can use them either in component markup or in JavaScript functions. Using value providers, you can either set or get attributes values.
<aura:attribute name="msg" type="String"/>
<p>{!'Hello! ' + v.msg}</p>
- Way to find attribute value in controller.js:
var msgValue = component.get("v.msg")
- How to set attribute value in controller.js
component.set("v.msg","Sunil Kumar");
Testers can build, enhance, and maintain scripts to regression test their mobile applications. Hands-on instruction is provided for those who want to explore the power of using Appium. The course covers content from installation to execution and reporting . The focus is on the practical application of Appium to resolve common mobile automated testing challenges. This course focuses on getting started with Appium.
ReplyDeletecourse/appiumtraininginsholinganallur/
As you have now understood the usage of ‘Record and Playback’ tool, the following are the different posts using which you can explore the functioning of ‘Selenium IDE’
ReplyDeleteselenium Training in chennai
All the latest updates from the Python Automationminds team. Python Automationminds lets you program in Python, in your browser. No need to install any software, just start coding straight away. There's a fully-functional web-based console and a programmer's text-editor
ReplyDeletePhyton training in Chennai