“Hybrid framework is the most commonly used framework in test automation projects.”
So, if you learn this and get it right, then you would be in a position to work on automation projects in your organization. With this, let us now start with the basics of the QTP hybrid framework.
What is Hybrid Framework in QTP?
Each and every framework type in QTP has its own positives and negatives. You can take the positive points from each of these frameworks and create a customized framework that suites your requirements. This customized framework is called a hybrid framework.
So, in very simple terms – “A hybrid framework is a framework that is created by combining together the features of the different types of QTP frameworks.” This is depicted in the image shown below.
Hybrid Framework In QTP Is there any specific predefined structure of a Hybrid Framework?
Well, a straightforward answer for this question would be – No. Let try to understand why it is this way? In the previous section, you had read about what a hybrid framework actually is. There are two key takeaway points in that explanation –
1) A hybrid framework is a collection of features from the other framework types. 2) A hybrid framework is one that suites your requirements.
Now, the second point mentioned above is very important. The hybrid framework that you create should suite your requirements or your stakeholder’s requirements. And there can be a lot of factors that influence your decisions. For example –
– you might want to use a particular feature in your hybrid framework but it might not be useful or necessary for the application you are testing. Example – you might want to use excel sheets to store test data. But in case your application takes the same data every time, it makes more sense to hard-code the data in your code itself or maybe taking it as environment variables – you might have a disliking for certain features and hence you always tend to use the features that you like. For example, I’m more biased towards functions and hence I tend to use them more than say, using action calls – your client may have a preference towards certain type of framework as they would have seen a similar sort of framework being used previously. So if you can convince the client, then its well and good, else you would have to stick around with what they have suggested (this is something that I have had to deal with in few of my automation projects)
Taking all the above points into consideration, you can safely say that the features that you select to create your hybrid framework may vary vastly from someone else’s framework. And hence, there is no predefined structure of this type of framework. To sum it up, different hybrid frameworks should be like –
How different hybrid frameworks in QTP differ from each other
But there are certain components (or features) that frequently appear in different hybrid frameworks. These components would be the ones that we would use to create the sample hybrid framework.
Is it easy to identify Hybrid Frameworks?
Well, its easy but not that straightforward to identify a hybrid framework. An important reason for this is that the implementation of hybrid framework varies from person to person and from project to project. But you had also seen in the beginning of this article that most of the frameworks implemented in live projects are in fact hybrid frameworks.
Hence, any good framework worth its salt should be a hybrid framework. And to identify it properly, you need to have a close look at its architecture and its components. You should try to find out if its using keywords extensively, or if its taking its data from excel sheets, or if the code is written in modular format. This way, you would be able to identify the framework types from which the hybrid framework borrows its features.
Useful Tip: Whenever you create or use a hybrid framework, don’t just call it a hybrid framework. Always try to include the names of the other frameworks from which your hybrid framework has derived its features. For example, you can call your framework as –
– a hybrid framework based on functional and data driven approach – a keyword based hybrid framework – a hybrid framework implemented with functional and keyword driven components – or any other fancy terms that come to your mind
Its always considered a good practice to call your framework this way.
A word about BPT Framework: A good BPT framework will also not just be a BPT framework alone. It would also incorporate the features of a keyword driven, data driven or modular framework in it. And if that’s the case, then it becomes a hybrid framework. But still people tend to call it a BPT framework. So in your case, you can choose to simply call it a BPT framework, or a BPT based hybrid framework or something on similar lines.
Features of a Hybrid Framework
In this section, you would see some of the features that you can be implemented as part of your hybrid framework. Some of these features are pretty common and you would see them being used in many different hybrid frameworks. There would be other features also that are not so important and can be termed as nice to have (but not mandatory). Let us see some of these important features.
1.) The most basic set of features come first. The hybrid framework should be designed in such a way that it is re-usable and easily scalable. Also, the code should be easy to understand and maintain. As a matter of fact, please don’t consider this point as a feature. It is a must-have and you should consider it a rule. Doing this would save you a lot of troubles afterwards.
2.) All the components in the framework can be grouped separately. You can employ a basic folder structure to keep the test cases, function libraries, data sheets and test results grouped together in an efficient manner.
employ an efficient folder structure for your framework
3.) One click execution. This is a good feature that you can implement in your automation framework. With just a single click of a button, the framework should execute all the test cases. In most of the cases, this feature is implement using MS excel + macros. This is because the excel sheets provide you with more control on how you can select your test cases.
One Click Execution Of Test Scripts
4.) Another important point is how you display your test results. You should aim to display the test results at minimum 2 different levels of abstraction. These are – summarized report and detailed report. A summarized report can simply be an excel sheet that provides the list of the test cases that were executed, whether they passed or failed, and a link pointing towards the detailed report for each of the test cases. You can also add more parameters to this report if required. An example of a summarized report is shown in the below image.
Summarized Report
A detailed report would be the actual QTP result which you would have saved in appropriate result folders. The detailed report will mostly be used for investigative purpose. For example, in case a test script fails, or it takes more than expected time for completion, you can open the detailed result and try to find out the exact cause for the issue.
5.) Automated Email Notification. This is another important feature that you can incorporate in your automation framework. This is especially useful when you execute your test scripts in batch execution mode. You can write some logic in your framework that will automatically send emails to intended recipients after the completion of the batch run. You can also include the summarized excel report as an attachment in the email.
6.) Automated SMS Notification. This can be considered as an extension of the above point. Here, you can have your framework send an SMS to a select list of people with the test execution status.
If you intend to use this feature, then please keep in mind that the messages that you send should be short and crisp. For example, you could send something like this as an SMS – “TCs executed-100. Passed-85. Failed-15.”
Also, please note that this feature is used very rarely. So from the usability point of view, its very difficult justify the use or need of sending SMSes. Also you would need to factor in the cost of sending SMSes.
A scenario where sending SMS can be useful: You can configure your framework to send an SMS to certain people when, say 5 or 10 consecutive test cases fail one after the other. Such a scenario normally indicates that there is some big issue going on. Maybe the environment went down, or some other problem. Having an SMS sent in such a situation can help the teams identify the issue in a more timely manner.
7.) Framework should be externally configurable to a certain extent. This is a nice feature that I have started using recently. The idea behind this feature is – there should be certain functionalities in your framework that you should be able to configure without having to touch the code. Consider the following scenarios as examples –
a) Consider a case that on a particular day, the test environment is pretty slow. This requires you to increase the default load time of the pages. Your framework should provide a provision to do this easily for all the test cases. b) Consider another situation where you need to modify the details of the people to whom the email should be sent. Or maybe you don’t want to send email for a particular batch run. You framework should provide you a means with which you should be able to do these tasks without touching the code.
The best way to create an externally configurable sheet is to use an excel sheet. The below image shows an example of such a sheet.
Hybrid Framework - External Configuration Sheet
8.) Intermediate Status Reports. This is another nice to have feature that you can incorporate in your automation framework. Consider a scenario where you have set up a batch execution of 100 test cases. Its obvious that you wouldn’t be sitting in front of your system all the time to monitor the execution. Suppose you move away from your desk and come back to see the execution after say, 1 hour.
At this point the test cases might still be executing but you would not know how much more time your scripts will take to execute or maybe how many test cases are still pending. In such situations, intermediate status reports come in handy.
Intermediate status report can be as simple as a auto-closing popup that appears after the execution of each test case, gives you the updates and closes automatically (in 3 to 5 seconds). A simple message like the one shown below will be more than enough.
Intermediate Status Report
These were some of the features that you can incorporate in your automation framework. It’s not necessary that you add all the features at once. A good approach would be create the framework with the minimum necessary features. And then you can add these nice-to-have features to your framework as enhancements.
In the upcoming articles in this series, we will create a hybrid framework from scratch where we will be incorporating some of these features. Please note that we will not be adding all the features to the sample framework as it leads to code complexity. The goal of the upcoming articles would be to keep the framework creation process as simple as possible, so that it is easily understood by everyone.
AngularJS is a JavaScript framework. It can be added to an HTML
page with a <script> tag.
AngularJS extends HTML attributes with
Directives, and binds data to HTML with Expressions.
AngularJS is a JavaScript Framework
AngularJS is a JavaScript framework. It is a library written in JavaScript.
AngularJS is distributed as a JavaScript file, and can be added to a web page
with a script tag:
AngularJS extends HTML with ng-directives.
The ng-app directive defines an AngularJS application.
The ng-model directive binds the value of HTML controls
(input, select, textarea) to application data.
The ng-bind directive binds application data to the HTML
view.
Example explained:
AngularJS starts automatically when the web page has loaded.
The ng-app directive tells AngularJS that the <div> element is the "owner" of an
AngularJS application.
The ng-model directive binds the value of the input field to
the application variable name.
The ng-bind directive binds the innerHTML
of the <p> element to the application variable name.
AngularJS Directives
As you have already seen, AngularJS directives are HTML attributes with an ng prefix.
The ng-init directive initializes AngularJS application variables.
AngularJS Example
<divng-app=""ng-init="firstName='John'">
<p>The name is <spanng-bind="firstName"></span></p>
You will learn more about expressions later in this tutorial.
AngularJS Applications
AngularJS modules define AngularJS applications.
AngularJS controllers control AngularJS applications.
The ng-app
directive defines the application, the ng-controller
directive defines the controller.
AngularJS Example
<divng-app="myApp"ng-controller="myCtrl">
First Name: <inputtype="text"ng-model="firstName"><br>
Last Name: <inputtype="text"ng-model="lastName"><br> <br>
Full Name: {{firstName + " " + lastName}}
AngularJS expressions can be written inside double braces: {{ expression }}.
AngularJS expressions can also be written inside a directive: ng-bind="expression".
AngularJS will resolve the expression, and return the result exactly where the expression is written. AngularJS expressions are much like JavaScript
expressions: They can contain literals, operators, and variables.
Example {{ 5 + 5 }} or {{ firstName + " " + lastName }}
<div> <p>My first expression: {{ 5 + 5 }}</p> </div>
</body> </html>
You can write expressions wherever you like, AngularJS will simply resolve the
expression and return the result.
Example: Let AngularJS change the value of CSS properties.
Change the color of the input box below, by changing it's value:
<p>The name is <spanng-bind="person.lastName"></span></p>
</div>
AngularJS Arrays
AngularJS arrays are like JavaScript arrays:
Example
<divng-app=""ng-init="points=[1,15,19,2,40]">
<p>The third result is {{ points[2] }}</p>
</div>
Same example using ng-bind:
Example
<divng-app=""ng-init="points=[1,15,19,2,40]">
<p>The third result is <spanng-bind="points[2]"></span></p>
</div>
AngularJS Expressions vs. JavaScript Expressions
Like JavaScript expressions, AngularJS expressions can contain literals,
operators, and variables.
Unlike JavaScript expressions, AngularJS expressions can be written inside
HTML.
AngularJS expressions do not support
conditionals, loops, and exceptions, while JavaScript expressions do.
AngularJS expressions support filters, while JavaScript expressions do not.
AngularJS Modules
An AngularJS module defines an application.
The module is a container for the different parts of an
application.
The module is a container for the application controllers.
Controllers always belong to a module.
Creating a Module
A module is created by using the AngularJS function angular.module
<divng-app="myApp">...</div>
<script>
var app = angular.module("myApp", []);
</script>
The "myApp" parameter refers to an HTML element in which the application will
run.
Now you can add controllers, directives, filters, and more, to your AngularJS application.
Adding a Controller
Add a controller to your application, and refer to the controller with the
ng-controller directive:
You will learn more about controllers later in this tutorial.
Adding a Directive
AngularJS has a set of built-in directives which you can use to add functionality
to your application.
For a full reference, visit our
AngularJS directive reference.
In addition you can use the module to add your own directives to your
applications:
Example
<divng-app="myApp"w3-test-directive></div>
<script>
var app =
angular.module("myApp", []);
app.directive("w3TestDirective",
function() { return {
template : "I was made in a directive constructor!"
};
});
</script>
You will learn more about directives later in this tutorial.
Modules and Controllers in Files
It is common in AngularJS applications to put the module and the controllers
in JavaScript files.
In this example, "myApp.js" contains an application module definition,
while "myCtrl.js"
contains the controller:
Global functions should be avoided in JavaScript. They can easily be overwritten or destroyed by other scripts.
AngularJS modules reduces this problem, by keeping all functions local to the
module.
When to Load the Library
While it is common in HTML applications to place scripts at the end of the
<body> element, it is recommended that you load the AngularJS library either in
the <head> or at the start of the <body>.
This is because
calls to angular.module can only be compiled after the library has been loaded.
AngularJS lets you extend HTML with new attributes called
Directives.
AngularJS has a set of built-in directives which offers functionality
to your applications.
AngularJS also lets you define your own directives.
AngularJS Directives
AngularJS directives are extended HTML attributes with the prefix ng-.
The ng-app directive initializes an AngularJS application.
The ng-init directive initializes
application data.
The ng-model directive binds the value of HTML controls
(input, select, textarea) to application data.
Read about all AngularJS directives in our AngularJS directive reference.
The ng-app directive also tells AngularJS that the <div> element
is the "owner" of the AngularJS application.
Data Binding
The {{ firstName }} expression, in the example above, is an AngularJS data binding expression.
Data binding in AngularJS binds AngularJS expressions
with AngularJS data. {{ firstName }} is bound with ng-model="firstName".
In the next example two text fields are bound together with two ng-model
directives:
AngularJS is perfect for database CRUD (Create Read Update Delete) applications.
Just imagine if these objects were records from a database.
The ng-app Directive
The ng-app directive defines the root element of an
AngularJS application.
The ng-app directive will auto-bootstrap (automatically
initialize) the application when a web page is loaded.
The ng-init Directive
The ng-init directive defines initial values for an
AngularJS application.
Normally, you will not use ng-init. You will use a controller or module
instead.
You will learn more about controllers and modules later.
The ng-model Directive
The ng-model directive binds the value of HTML controls
(input, select, textarea) to application data.
The ng-model directive can also:
Provide type validation for application data (number, email, required).
Provide status for application data (invalid, dirty, touched, error).
Provide CSS classes for HTML elements.
Bind HTML elements to HTML forms.
Read more about the ng-model directive in the next chapter.
Create New Directives
In addition to all the built-in AngularJS directives, you can create your own
directives.
New directives are created by using the .directive function.
To invoke the new directive, make an HTML element with the same tag name as
the new directive.
When naming a directive, you must use a camel case name,
w3TestDirective, but when invoking it, you must use - separated name, w3-test-directive:
Example
<bodyng-app="myApp">
<w3-test-directive></w3-test-directive>
<script>
var app = angular.module("myApp", []);
app.directive("w3TestDirective",
function() {
return {
template : "<h1>Made by a directive!</h1>"
};
}); </script>
</body>
You can invoke a directive by using:
Element name
Attribute
Class
Comment
The examples below will all produce the same result:
Element name
<w3-test-directive></w3-test-directive>
Attribute
<divw3-test-directive></div>
Class
<divclass="w3-test-directive"></div>
Comment
<!-- directive: w3-test-directive -->
Restrictions
You can restrict your directives to only be invoked by some of the methods.
Example
By adding a restrict property with the value "A",
the directive can only be invoked by attributes: var app = angular.module("myApp", []);
app.directive("w3TestDirective",
function() { return {
restrict : "A",
template : "<h1>Made by a directive!</h1>"
};
});
AngularJS ng-model Directive
The ng-model directive binds the value of HTML controls (input,
select, textarea) to application data.
The ng-model Directive
With the ng-model directive you can bind the value of an input field
to a variable created in AngularJS.
The HTML container where the AngularJS application is displayed, is called the view.
The view has access to the model, and there are several ways of displaying
model data in the view.
You can use the ng-bind directive, which will bind the innerHTML
of the element to the specified model property:
Example
<png-bind="firstname"></p>
You can also use double braces {{}} to display content
from the model:
Example
<p>First name: {{firstname}}</p>
Or you can use the ng-model directive on HTML controls to bind
the model to the view.
The ng-model Directive
Use the ng-model directive to bind data from the model to the view on HTML
controls (input, select, textarea)
Example
<inputng-model="firstname">
The ng-model directive provides a two-way binding between the
model and the view.
Two-way Binding
Data binding in AngularJS is the synchronization between the model and the
view.
When data in the model changes, the view reflects the
change, and when data in the view changes, the model is
updated as well. This happens immediately and automatically, which makes sure
that the model and the view is updated at all times.
Applications in AngularJS are controlled by controllers. Read about
controllers in the AngularJS Controllers
chapter.
Because of the immediate synchronization of the model and the view, the
controller can be completely separated from the view, and simply concentrate on
the model data. Thanks to the data binding in AngularJS, the view will reflect
any changes made in the controller.
AngularJS controllers control the data of AngularJS
applications.
AngularJS controllers are regular JavaScript Objects.
AngularJS Controllers
AngularJS applications are controlled by controllers.
The ng-controller
directive defines the application controller.
A controller is a JavaScript Object, created by a standard JavaScript object constructor.
AngularJS Example
<divng-app="myApp"ng-controller="myCtrl">
First Name: <inputtype="text"ng-model="firstName"><br>
Last Name: <inputtype="text"ng-model="lastName"><br> <br>
Full Name: {{firstName + " " + lastName}}
Application explained:
The AngularJS application is defined by ng-app="myApp". The application
runs inside the <div>.
The ng-controller="myCtrl" attribute is an AngularJS directive.
It defines a
controller.
The myCtrl function is a JavaScript function.
AngularJS will invoke the controller with a $scope object.
In AngularJS, $scope is the application object (the owner of application
variables and functions).
The controller creates two properties (variables) in the scope
(firstName and
lastName).
The ng-model directives bind the input fields to
the controller properties (firstName and lastName).
Controller Methods
The example above demonstrated a controller object with two properties: lastName and firstName.
A controller can also have methods (variables as functions):
AngularJS Example
<divng-app="myApp"ng-controller="personCtrl">
First Name: <inputtype="text"ng-model="firstName"><br>
Last Name: <inputtype="text"ng-model="lastName"><br> <br>
Full Name: {{fullName()}}
In larger applications, it is common to store controllers in
external files.
Just copy the code between the <script> tags into an external file named
personController.js:
AngularJS Example
<divng-app="myApp"ng-controller="personCtrl">
First Name: <inputtype="text"ng-model="firstName"><br>
Last Name: <inputtype="text"ng-model="lastName"><br> <br>
Full Name: {{firstName + " " + lastName}}
</div>
<scriptsrc="personController.js"></script>
Another Example
For the next example we will create a new controller file:
When adding properties to the $scope
object in the controller, the view (HTML) gets access to these properties.
In the view, you do not use the prefix $scope, you just
refer to a propertyname, like {{carname}}.
Understanding the Scope
If we consider an AngularJS application to consist of:
View, which is the HTML.
Model, which is the data available for the current view.
Controller, which is the JavaScript function that
makes/changes/removes/controls the data.
Then the scope is the Model.
The scope is a JavaScript object with properties and methods, which are
available for both the view and the controller.
Example
If you make changes in the view, the model and the controller
will be updated:
It is important to know which scope you are dealing with, at any time.
In the two examples above there is only one scope, so knowing your scope is
not an issue, but for larger applications there can be sections in the HTML DOM
which can only access certain scopes.
Example
When dealing with the ng-repeat directive, each repetition has
access to the current repetition object:
Each <li> element has access to the current repetition object,
in this case a string, which is referred to by using x.
Root Scope
All applications have a $rootScope which is the scope created on
the HTML element that contains the ng-app directive.
The rootScope is available in the entire application.
If a variable has the same name in both the current scope and in the
rootScope, the application use the one in the current scope.
Example
A variable named "color" exists in both the controller's scope and in the
rootScope:
The filter filter selects a subset of an array.
The filter filter can only be used on arrays, and it returns an
array containing only the matching items.
Example
Return the names that contains the letter "i":
<divng-app="myApp"ng-controller="namesCtrl">
<ul> <ling-repeat="x in names |
filter : 'i'"> {{ x }} </li> </ul>
By setting the ng-model directive
on an input field, we can use the value of the input field as an expression in a
filter.
Type a letter in the input field, and the list will shrink/grow depending on the match:
Jani
Carl
Margareth
Hege
Joe
Gustav
Birgit
Mary
Kai
Example
<divng-app="myApp"ng-controller="namesCtrl">
<p><inputtype="text"ng-model="test"></p>
<ul> <ling-repeat="x in names | filter : test"> {{ x }} </li> </ul>
</div>
Sort an Array Based on User Input
Click the table headers to change the sort order::
Name
Country
Jani
Norway
Carl
Sweden
Margareth
England
Hege
Norway
Joe
Denmark
Gustav
Sweden
Birgit
Denmark
Mary
England
Kai
Norway
By adding the ng-click directive on the table headers, we can run a function that changes the sorting order of the array:
You can make your own filters by registering a new filter factory function with
your module:
Example
Make a custom filter called "myFormat":
<ulng-app="myApp"ng-controller="namesCtrl"> <ling-repeat="x
in names"> {{x |
myFormat}} </li> </ul>
<script>
var app =
angular.module('myApp', []);
app.filter('myFormat',
function() { returnfunction(x) { var i, c, txt = "";
x =
x.split("") for (i = 0; i <
x.length; i++) {
c = x[i]; if (i % 2 == 0) {
c = c.toUpperCase();
}
txt
+= c;
} return txt;
};
});
app.controller('namesCtrl', function($scope)
{
$scope.names = ['Jani', 'Carl', 'Margareth', 'Hege',
'Joe', 'Gustav', 'Birgit', 'Mary', 'Kai'];
});
</script>
AngularJS Services
In AngularJS you can make your own service, or use one of the
many built-in services.
What is a Service?
In AngularJS, a service is a function, or object, that is available for,
and limited to, your AngularJS application.
AngularJS has about 30 built-in services. One of them is the $location
service.
The $location service has methods which return information
about the location of the current web page:
Note that the $location service is passed in to the controller
as an argument. In order to use the service in the controller, it must be
defined as a dependency.
Why use Services?
For many services, like the $location service, it seems like you
could use objects that are already in the DOM, like the window.location
object, and you could, but it would have some limitations, at least for your
AngularJS application.
AngularJS constantly supervises your application, and for it to handle changes
and events properly, AngularJS prefers that you use the $location
service instead of the window.location object.
The $http Service
The $http service is one of the most common used services in AngularJS
applications. The service makes a request to the server, and lets your
application handle the response.
Example
Use the $http service to request data from the server:
Once you have created a service, and connected it to your
application, you can use the service in any controller, directive,
filter, or even inside other services.
To use the service inside a filter, add it as a dependency when defining the
filter:
You can use the filter when displaying values from an object, or an array:
Create a service named hexafy: <ul> <ling-repeat="x in counts">{{x | myFormat}}</li> </ul>
AngularJS AJAX - $http
$http is an AngularJS service for reading data
from remote servers.
AngularJS $http
The AngularJS $http service makes a request to the server, and
returns a response.
Example
Make a simple request to the server, and display the result in a header:
The example above uses the .get method of the $http
service.
The .get method is a shortcut method of the $http service. There are several
shortcut methods:
.delete()
.get()
.head()
.jsonp()
.patch()
.post()
.put()
The methods above are all shortcuts of calling the $http service:
The example above executes the $http service with an object as an argument.
The object is
specifying the HTTP method, the url, what to do on success, and what to do on
failure.
Properties
The response from the server is an object with these properties:
.config the object used to generate the request.
.data a string, or an object, carrying the response from
the server.
.headers a function to use to get header information.
To handle errors, add one more functions to the .then method:
Example
var app = angular.module('myApp', []);
app.controller('myCtrl',
function($scope, $http) {
$http.get("wrongfilename.htm")
.then(function(response) { //First function handles success $scope.content
= response.data;
}, function(response) { //Second function handles error
$scope.content = "Something went wrong";
});
});
JSON
The data you get from the response is expected to be in JSON format.
JSON is a great way of transporting data, and it is easy to use within
AngularJS, or any other JavaScript.
Example: On the server we have a file that returns a JSON object containing
15 customers, all wrapped in array called records. Take a look at the JSON object.
Example
The ng-repeat directive is perfect for looping through an
array:
You can also use the ng-repeat directive to make the same dropdown list:
Example
<select> <optionng-repeat="x in names">{{x}}</option> </select>
Because the ng-repeat directive repeats a block of HTML code for
each item in an array, it can be used to create options in a dropdown list, but
the ng-options directive was made especially for filling a dropdown
list with options, and has at least one important advantage:
Dropdowns made with ng-options allows the selected value to be
an object, while dropdowns made from ng-repeat has
to be a string.
What Do I Use?
Assume you have an array of objects:
$scope.cars = [
{model : "Ford Mustang", color :
"red"},
{model : "Fiat 500", color : "white"},
{model : "Volvo XC90", color : "black"}
];
The ng-repeat directive has it's limitations, the selected value must be a string:
Example
Using ng-repeat:
<selectng-model="selectedCar"> <optionng-repeat="x in cars"value="{{x.model}}">{{x.model}}</option> </select>
<h1>You selected: {{selectedCar}}</h1>
When using the ng-options directive, the selected value can be an object:
Example
Using ng-options:
<selectng-model="selectedCar"ng-options="x.model for x in cars"> </select>
<h1>You selected: {{selectedCar.model}}</h1> <p>It's color is: {{selectedCar.color}}</p>
When the selected value can be an object, it can hold more information, and your application can be more flexible.
We will use the ng-options directive in this tutorial.
The Data Source as an Object
In the previous examples the data source was an array, but we can also use an
object.
Assume you have an object with key-value pairs:
The following section is a listing of the server code used to fetch SQL data.
Using PHP and MySQL. Returning JSON.
Using PHP and MS Access. Returning JSON.
Using ASP.NET, VB, and MS Access. Returning JSON.
Using ASP.NET, Razor, and SQL Lite. Returning JSON.
Cross-Site HTTP Requests
Requests for data from a different server (than the requesting page), are
called cross-site HTTP requests.
Cross-site requests are common on the web. Many pages load CSS, images,
and scripts from different servers.
In modern browsers, cross-site HTTP requests from scripts
are restricted to same site for security reasons.
The following line, in our PHP examples, has been added to allow cross-site access.
<%@ Import Namespace="System.IO"%>
<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.OleDb"%>
<%
Response.AppendHeader("Access-Control-Allow-Origin", "*")
Response.AppendHeader("Content-type", "application/json")
Dim conn As
OleDbConnection
Dim objAdapter As OleDbDataAdapter
Dim objTable As
DataTable
Dim objRow As DataRow
Dim objDataSet As New DataSet()
Dim outp
Dim c
conn = New OledbConnection("Provider=Microsoft.Jet.OLEDB.4.0;data
source=Northwind.mdb")
objAdapter = New OledbDataAdapter("SELECT
CompanyName, City, Country FROM Customers", conn)
objAdapter.Fill(objDataSet,
"myTable")
objTable=objDataSet.Tables("myTable")
outp = ""
c = chr(34)
for each x in objTable.Rows
if outp <> "" then outp = outp & ","
outp = outp & "{" & c & "Name" & c & ":" & c & x("CompanyName")
& c & ","
outp = outp & c & "City" & c & ":" & c
& x("City") & c & ","
outp = outp & c & "Country" & c
& ":" & c & x("Country") & c & "}"
next
outp
="{" & c & "records" & c & ":[" & outp & "]}"
response.write(outp)
conn.close
%>
4. Server Code ASP.NET, Razor C# and SQL Lite
@{
Response.AppendHeader("Access-Control-Allow-Origin", "*")
Response.AppendHeader("Content-type", "application/json")
var db =
Database.Open("Northwind");
var query = db.Query("SELECT CompanyName,
City, Country FROM Customers");
var outp =""
var c = chr(34)
}
@foreach(var row in
query)
{
if outp <> "" then outp = outp + ","
outp = outp + "{" + c + "Name" + c + ":" + c
+ @row.CompanyName + c + ","
outp = outp + c
+ "City" + c + ":" + c
+ @row.City + c + ","
outp = outp
+ c + "Country" + c
+ ":" + c + @row.Country + c + "}"
}
outp ="{" + c
+ "records" + c + ":[" + outp + "]}"
@outp
AngularJS HTML DOM
AngularJS has directives for binding application data to the
attributes of HTML DOM elements.
The ng-disabled Directive
The ng-disabled directive binds AngularJS application data to the
disabled attribute of HTML elements.
Application explained:
The ng-disabled directive binds the application data mySwitch to the
HTML button's disabled attribute.
The ng-model
directive binds the value of the HTML checkbox element to the value of mySwitch.
If the value of mySwitch evaluates to true, the button will
be disabled:
<p> <buttondisabled>Click Me!</button> </p>
If the value of mySwitch evaluates to false, the button will
not be disabled:
<p> <button>Click Me!</button> </p>
The ng-show Directive
The ng-show directive shows or hides an HTML
element.
AngularJS Example
<divng-app="">
<png-show="true">I am visible.</p>
<png-show="false">I am not visible.</p>
</div>
The ng-show directive shows (or hides) an HTML element based on the
value of ng-show.
You can use any expression that evaluates to true or false:
AngularJS Example
<divng-app=""ng-init="hour=13">
<png-show="hour > 12">I am visible.</p>
</div>
In the next chapter, there are more examples, using the click of a button to hide HTML elements.
The ng-hide Directive
The ng-hide directive hides or shows an HTML
element.
AngularJS Example
<divng-app="">
<png-hide="true">I am
not visible.</p>
<png-hide="false">I am visible.</p>
</div>
AngularJS Events
AngularJS has its own HTML events directives.
AngularJS Events
You can add AngularJS event listeners to your HTML elements by using one or
more of these directives:
ng-blur
ng-change
ng-click
ng-copy
ng-cut
ng-dblclick
ng-focus
ng-keydown
ng-keypress
ng-keyup
ng-mousedown
ng-mouseenter
ng-mouseleave
ng-mousemove
ng-mouseover
ng-mouseup
ng-paste
The event directives allows us to run AngularJS functions at certain user
events.
An AngularJS event will not overwrite an HTML event, both events will be
executed.
Mouse Events
Mouse events occur when the cursor moves over an element, in this order:
ng-mouseenter
ng-mouseover
ng-mousemove
ng-mouseleave
Or when a mouse button is clicked on an element, in this order:
ng-mousedown
ng-mouseup
ng-click
You can add mouse events on any HTML element.
Example
Increase the count variable when the mouse moves over the H1 element:
<divng-app="myApp"ng-controller="myCtrl">
<h1ng-mousemove="count
= count + 1">Mouse over me!</h1>
If you want to show a section of HTML code when a button is clicked,
and hide when the button is clicked again, like a dropdown menu, make
the button behave like a toggle switch:
The showMe variable starts out as the Boolean value false.
The myFunc function sets the showMe variable to the
opposite of what it is, by using the ! (not) operator.
$event Object
You can pass the $event object as an argument when calling the
function.
The $event object contains the browser's event object:
Example
<divng-app="myApp"ng-controller="myCtrl">
<h1ng-mousemove="myFunc($event)">Mouse
Over Me!</h1>
Forms in AngularJS provides data-binding and validation of input controls.
Input Controls
Input controls are the HTML input elements:
input elements
select elements
button elements
textarea elements
Data-Binding
Input controls provides data-binding by using the
ng-model directive.
<inputtype="text"ng-model="firstname">
The application does now have a property named firstname.
The ng-model directive binds the input controller to the rest of
your application.
The property firstname, can be referred to in a controller:
It can also be referred to elsewhere in the application:
Example
<form>
First Name: <inputtype="text"ng-model="firstname"> </form>
<h1>You entered: {{firstname}}</h1>
Checkbox
A checkbox has the value true or false. Apply the
ng-model directive to a checkbox, and use it's value in your
application.
Example
Show the header if the checkbox is checked:
<form>
Check to show a header: <inputtype="checkbox"ng-model="myVar"> </form>
<h1ng-show="myVar">My
Header</h1>
Radiobuttons
Bind radio buttons to your application with the ng-model
directive.
Radio buttons with the same ng-model can have different values,
but only the selected one will be used.
Example
Display some text, based on the value of the selected radio button:
<form>
Pick a topic: <inputtype="radio"ng-model="myVar"value="dogs">Dogs <inputtype="radio"ng-model="myVar"value="tuts">Tutorials <inputtype="radio"ng-model="myVar"value="cars">Cars </form>
The value of myVar will be either dogs, tuts, or
cars.
Selectbox
Bind select boxes to your application with the ng-model
directive.
The property defined in the ng-model attribute will have the
value of the selected option in the selectbox.
Example
Display some text, based on the value of the selected option:
The novalidate attribute is new in HTML5. It disables any default
browser validation.
Example Explained
The ng-app directive defines the AngularJS application.
The ng-controller directive defines the application controller.
The ng-model directive binds two input elements to the
user object in the model.
The formCtrl controller sets initial values to the
master object, and defines the reset() method.
The reset() method sets the user
object
equal to the master object.
The ng-click directive invokes the reset()
method, only if the button is clicked.
The novalidate attribute is not needed for this application, but normally you
will use it in AngularJS forms, to override standard HTML5 validation.