Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,908 members, 7,802,952 topics. Date: Saturday, 20 April 2024 at 05:03 AM

Yoruba And Hausa Fear God, Ibo Fear Fulani. - Politics - Nairaland

Nairaland Forum / Nairaland / General / Politics / Yoruba And Hausa Fear God, Ibo Fear Fulani. (1623 Views)

Fulani And Hausa Clash In Sokoto / The Hausa Fulani, The Yoruba And The Slaughter In Ile Ife (1) By Fani-kayode / Yoruba, Igbo and Hausa-Fulani shall remain one!!! (SEE WHY) (2) (3) (4)

(1) (Reply) (Go Down)

Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 8:53am On Oct 09, 2016
By Chinedu Adonu

ENUGU—
THE governors of the five South East states of Abia, Anambra, Ebonyi, Enugu and Imo have now become the butt of criticisms from the church and some rights groups over the poor handling of the crises arising from the incessant attacks by Fulani herdsmen on the people of the area.

Read more at: http://www.vanguardngr.com/2016/10/catholic-church-tackles-south-east-governors-herdsmen/

1 Like

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by Thewrath(m): 9:05am On Oct 09, 2016
What is this,a cheap comeback from the "used and dumped" tinubu saga?
Why did you change the original title of the article which is:
Catholic church tackles South East governors over herdsmen
When you are not the author?
You have a criminal intention and should be banned for distortion.

11 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by Thewrath(m): 9:12am On Oct 09, 2016
Fight your fight alone and stop dragging Igbos into it!

12 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by EasternPride: 9:19am On Oct 09, 2016
Afonjalysis

12 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by EasternPride: 9:20am On Oct 09, 2016
8 Ball Pool Soccer Stars Agar.io

Invite
Buy Coins
Earn Coins
Awards



© Copyright 2001 - 2016 Miniclip SA. All rights reserved. PRIVACY POLICY | HELP
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by EasternPride: 9:20am On Oct 09, 2016
tutorialspoint
Jobs
Send18
Whiteboard
Net Meeting
Tools
Articles
Facebook

Google+

Twitter

Linkedin

YouTube
HOME TUTORIALS LIBRARY CODING GROUND TUTOR CONNECT VIDEOS
Search
Ionic Tutorial
Ionic Basics Tutorial
Ionic - Home
Ionic - Overview
Ionic - Environment Setup
Ionic CSS Components
Ionic - Colors
Ionic - Header
Ionic - Content
Ionic - Footer
Ionic - Buttons
Ionic - Lists
Ionic - Cards
Ionic - Forms
Ionic - Toggle
Ionic - Checkbox
Ionic - Radio Button
Ionic - Range
Ionic - Select
Ionic - Tabs
Ionic - Grid
Ionic - Icons
Ionic - Padding
Ionic Javascript Components
Ionic - JS Action Sheet
Ionic - JS Backdrop
Ionic - JS Content
Ionic - JS Forms
Ionic - JS Events
Ionic - JS Header
Ionic - JS Footer
Ionic - JS Keyboard
Ionic - JS List
Ionic - JS Loading
Ionic - JS Modal
Ionic - JS Navigation
Ionic - JS Popover
Ionic - JS Popup
Ionic - JS Scroll
Ionic - JS Side Menu
Ionic - JS Slide Box
Ionic - JS Tabs
Ionic Advanced Concepts
Ionic - Cordova Integration
Ionic - AdMob
Ionic - Camera
Ionic - Facebook
Ionic - In App Browser
Ionic - Native Audio
Ionic - Geolocation
Ionic - Media
Ionic - Splash Screen
Ionic Useful Resources
Ionic - Quick Guide
Ionic - Useful Resources
Ionic - Discussion
Selected Reading
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Ionic - JavaScript Popup
Advertisements


Previous Page Next Page
This service is used for creating popup window on top of the regular view which will be used for interaction with users. There are four types of popups − show, confirm, alert and prompt.

Using Show Popup
This popup is the most complex of all. To trigger popups we need to inject $ionicPopup service to our controller and then just add a method that will trigger the popup we want to use, in this case $ionicPopup.show(). The onTap(e) function can be used for adding e.preventDefault() method that will keep the popup open if there is no change applied to the input. When popup is closed, the promise object will be resolved.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

// When button is clicked, the popup will be shown...
$scope.showPopup = function() {
$scope.data = {}

// Custom popup
var myPopup = $ionicPopup.show({
template: '<input type = "text" ng-model = "data.model">',
title: 'Title',
subTitle: 'Subtitle',
scope: $scope,

buttons: [
{ text: 'Cancel' }, {
text: '<b>Save</b>',
type: 'button-positive',
onTap: function(e) {

if (!$scope.data.model) {
//don't allow the user to close unless he enters model...
e.preventDefault();
} else {
return $scope.data.model;
}
}
}
]
});

myPopup.then(function(res) {
console.log('Tapped!', res);
});
};

})
HTML Code
<button class = "button" ng-click = "showPopup()">Add Popup Show</button>
Ionic Popup Show
You are probably noticing in above example some options used. The following table will explain all of the options and their use case.

Show Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
scope Scope A scope of the popup.
buttons Array[Object] Buttons that will be placed in footer of the popup. They can use their own properties and methods. text is displayed on top of the button, type is the Ionic class used for the button, onTap is function that will be triggered when the button is tapped. Returning a value will cause the promise to resolve with the given value.
Using Confirm Popup
Confirm popup is simpler version of Ionic popup. It contains Cancel and OK buttons that users can press to trigger corresponding functionality. It returns the promise object that is resolved when one of the buttons are pressed.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

// When button is clicked, the popup will be shown...
$scope.showConfirm = function() {

var confirmPopup = $ionicPopup.confirm({
title: 'Title',
template: 'Are you sure?'
});

confirmPopup.then(function(res) {
if(res) {
console.log('Sure!');
} else {
console.log('Not sure!');
}
});

};

})
HTML Code
<button class = "button" ng-click = "showConfirm()">Add Popup Confirm</button>
Ionic Popup Confirm
The following table explains the options that can be used for this popup.

Confirm Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
cancelText string The text for the Cancel button.
cancelType string The Ionic button type of the Cancel button.
okText string The text for the OK button.
okType string The Ionic button type of the OK button.
Using Alert Popup
Alert is simple popup that is used for displaying alert information to the user. It has only one button that is used to close the popup and resolve the popups promise object.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

$scope.showAlert = function() {

var alertPopup = $ionicPopup.alert({
title: 'Title',
template: 'Alert message'
});

alertPopup.then(function(res) {
// Custom functionality....
});
};

})
HTML Code
<button class = "button" ng-click = "showAlert()">Add Popup Alert</button>
Ionic Popup Alert
Following table shows the options that can be used for alert popup.

Alert Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
okText string The text for the OK button.
okType string The Ionic button type of the OK button.
Using Prompt Popup
Last Ionic popup that can be created using Ionic is prompt. It has OK button that resolves promise with value from the input and Cancel button that resolves with undefined value.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

$scope.showPrompt = function() {

var promptPopup = $ionicPopup.prompt({
title: 'Title',
template: 'Template text',
inputType: 'text',
inputPlaceholder: 'Placeholder'
});

promptPopup.then(function(res) {
console.log(res);
});

};

})
HTML Code
<button class = "button" ng-click = "showPrompt()">Add Popup Prompt</button>
Ionic Popup Prompt
Following table shows options that can be used for prompt popup.

Prompt Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
inputType string The type for the input.
inputPlaceholder string A placeholder for the input.
cancelText string The text for the Cancel button.
cancelType string The Ionic button type of the Cancel button.
okText string The text for the OK button.
okType string The Ionic button type of the OK button.
Previous Page Print Next Page
Advertisements


img img img img img img






Tutorials Point
Write for us FAQ's Helping Contact
© Copyright 2016. All Rights Reserved.

Enter email for newsletter
go
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by EasternPride: 9:20am On Oct 09, 2016
tutorialspoint
Jobs
Send18
Whiteboard
Net Meeting
Tools
Articles
Facebook

Google+

Twitter

Linkedin

YouTube
HOME TUTORIALS LIBRARY CODING GROUND TUTOR CONNECT VIDEOS
Search
AngularJS Tutorial
AngularJS Tutorial
AngularJS - Home
AngularJS - Overview
AngularJS - Environment Setup
AngularJS - MVC Architecture
AngularJS - First Application
AngularJS - Directives
AngularJS - Expressions
AngularJS - Controllers
AngularJS - Filters
AngularJS - Tables
AngularJS - HTML DOM
AngularJS - Modules
AngularJS - Forms
AngularJS - Includes
AngularJS - AJAX
AngularJS - Views
AngularJS - Scopes
AngularJS - Services
AngularJS - Dependency Injection
AngularJS - Custom Directives
AngularJS - Internationalization
AngularJS Applications
AngularJS - ToDo Application
AngularJS - Notepad Application
AngularJS - Bootstrap Application
AngularJS - Login Application
AngularJS - Upload File
AngularJS - In-line Application
AngularJS - Nav Menu
AngularJS - Switch Menu
AngularJS - Order Form
AngularJS - Search Tab
AngularJS - Drag Application
AngularJS - Cart Application
AngularJS - Translate Application
AngularJS - Chart Application
AngularJS - Maps Application
AngularJS - Share Application
AngularJS - Weather Application
AngularJS - Timer Application
AngularJS - Leaflet Application
AngularJS - Lastfm Application
AngularJS Useful Resources
AngularJS - Questions and Answers
AngularJS - Quick Guide
AngularJS - Useful Resources
AngularJS - Discussion
Selected Reading
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
AngularJS - Scopes
Advertisements


Previous Page Next Page
Scope is a special javascript object which plays the role of joining controller with the views. Scope contains the model data. In controllers, model data is accessed via $scope object.

<script>
var mainApp = angular.module("mainApp", []);

mainApp.controller("shapeController", function($scope) {
$scope.message = "In shape controller";
$scope.type = "Shape";
});
</script>
Following are the important points to be considered in above example.

$scope is passed as first argument to controller during its constructor definition.

$scope.message and $scope.type are the models which are to be used in the HTML page.

We've set values to models which will be reflected in the application module whose controller is shapeController.

We can define functions as well in $scope.

Scope Inheritance
Scope are controllers specific. If we defines nested controllers then child controller will inherit the scope of its parent controller.

<script>
var mainApp = angular.module("mainApp", []);

mainApp.controller("shapeController", function($scope) {
$scope.message = "In shape controller";
$scope.type = "Shape";
});

mainApp.controller("circleController", function($scope) {
$scope.message = "In circle controller";
});

</script>
Following are the important points to be considered in above example.

We've set values to models in shapeController.

We've overridden message in child controller circleController. When "message" is used within module of controller circleController, the overridden message will be used.

Example
Following example will showcase all the above mentioned directives.

testAngularJS.htm

<html>
<head>
<title>Angular JS Forms</title>
</head>

<body>
<h2>AngularJS Sample Application</h2>

<div ng-app = "mainApp" ng-controller = "shapeController">
<p>{{message}} <br/> {{type}} </p>

<div ng-controller = "circleController">
<p>{{message}} <br/> {{type}} </p>
</div>

<div ng-controller = "squareController">
<p>{{message}} <br/> {{type}} </p>
</div>

</div>

<script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>

<script>
var mainApp = angular.module("mainApp", []);

mainApp.controller("shapeController", function($scope) {
$scope.message = "In shape controller";
$scope.type = "Shape";
});

mainApp.controller("circleController", function($scope) {
$scope.message = "In circle controller";
});

mainApp.controller("squareController", function($scope) {
$scope.message = "In square controller";
$scope.type = "Square";
});

</script>

</body>
</html>
Result
Open textAngularJS.htm in a web browser. See the result.


Previous Page Print Next Page
Advertisements


img img img img img img






Tutorials Point
Write for us FAQ's Helping Contact
© Copyright 2016. All Rights Reserved.

Enter email for newsletter
go
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by CHANNELStv2020: 9:21am On Oct 09, 2016
Anybody stupid person way want attention go just write, igbos, Biafra or IPOB, FOOLS.

6 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by Nobody: 10:31am On Oct 09, 2016
No, Yoruba fear Hausa and gave them the presidency even when they have the wherewithal to be the president_inturn started crying like a greedy boy who gave his food intentional_turn around and ask for it but when refused started crying and wailing uncontrollably like an orphan child with no one to comfort in.

4 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by 90xtr93r: 11:38am On Oct 09, 2016
Frustrated Afonjas keep denigrating their downtrodden Yoruba tribe with their relentless lies and propaganda against the Igbo Nation...

Here comes the greatest army general in the history of Yoruba people, who knelt, wept and begged Abacha for his miserable life on earth:

Oladipo Diya -

https://www.youtube.com/watch?v=h8VM9hZMYZ0

6 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 12:53pm On Oct 09, 2016
Ibo governors advised to stop fearing fulani, look at West and follow the examples of amala and ewedu eaters in the way they respond to and treat fulani.

Shame, entire alaibo fearing fulani, shame,shame, shame!

1 Like

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by bennyann: 1:59pm On Oct 09, 2016
OP Well-done you hear. What a title! Are you trying to say Igbos don't fear God but fulanis while yourubas and hausas are the only ones who fear God.

OP you're a trouble maker. I'll not be here and watch you stir up trouble in my country. First learn how to spell Igbos properly cos I can bet you're the one scared of them right now.

Besides, it's only God that knows those who fear Him. So take your trouble and gerrarahere

3 Likes

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 2:23pm On Oct 09, 2016
bennyann:
OP Well-done you hear. What a title! Are you trying to say Igbos don't fear God but fulanis while yourubas and hausas are the only ones who fear God.

OP you're a trouble maker. I'll not be here and watch you stir up trouble in my country. First learn how to spell Igbos properly cos I can bet you're the one scared of them right now.

Besides, it's only God that knows those who fear Him. So take your trouble and gerrarahere

grin grin
Igbos are my inlaws, I love them!
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by bennyann: 2:35pm On Oct 09, 2016
MayorofLagos:


grin grin
Igbos are my inlaws, I love them!

Na so! I leave you to your in-laws then. Let them just catch you lipsrsealed
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 2:39pm On Oct 09, 2016
By Emeka Mamah & Francis Igata

Enugu—Worried by the accusation emanating from one Alhaji Sodu,an Enugu-based Fulani herdsman who claimed over the weekend that three of his sons and over 100 cows were missing, an aftermath of an alleged attack by Aku community youths, the entire Aku Welfare Association Federated, AWAF, yesterday, disassociated the community from such nefarious activities.

The union in a joint news briefing with all the traditional rulers of Aku community revealed that the purported attack did not take place within Aku boundary but instead, within Agu-Affa/Agu-Egede in Udi Local Government Area of Enugu State.

A statement jointly signed by the chairman, Aku Traditional Rulers,Igwe V.O.Attah and the chairman,Aku General Assembly, Felix Ezikeanyi read: ”Available evidence and surrounding circumstances unequivocally shows that Aku youths or its representatives did not attack Fulani herdsmen as alleged.

“It was observed that the scene of the purported attack did not take place within Aku boundary but rather with Agu-Affa/Agu-Egede in Udi Local Government Area. Hence, there was no reason or nexus linking Aku youths to the alleged attack. We find it rather curious that the five assailants, who were reported to be masked and whose identities were by implication subjected to speculation were unguardedly associated with Aku youths.


[size=20pt]It will be recalled that a palpable fear had engulfed Aku community last weekend,in Igbo-Etiti Local Government Area of Enugu State following the allegation from Alhaji Sodu. Vanguard’s investigations showed that Alhaji Sodu has since reunited with his three sons. His allegation forced members of the community to scamper to safety over fears of reprisal attack.[/size]

https://www.google.com/amp/www.vanguardngr.com/2016/09/enugu-community-slams-herdsmen-alleged-missing-100-cows/amp/?client=ms-android-metropcs-us&espv=1
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by Blue3k(m): 2:45pm On Oct 09, 2016
They are acting like paper tigers. Arrest these vandals and restore order. SW states have done it and nothing happened to them. Farmers should put barb wire around fences buy a shot gun and protect land.

Why is everything made tribal. Are you people so superficial that everything is filtered through tribe or region. Why can't we just think about overall principles and align ourselves that way. We all belive in private property rights and rule of law. Let's focus on protecting our lives and propert so we can ensure future prosperity.

1 Like

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 3:08pm On Oct 09, 2016
How fulani herdsmen behave in Yorubaland:

They attack farmers and then for fear of counter attack, quickly escape into forest or police/army barrack if one is near. They send alert warning others that the ground is hot and to stay away.



How fulani herdsmen behave in Iboland:

They attack farmers and then warn the village head that the farmer killed their cows and they must be compensated. After receiving compensation. They send alert to the village and nearby villages giving a date they will return to attack them. The village then evacuates and abandon their farm and homesteads for fear of reprisal. Fulani return with cows to the abandoned villages and feed fat on crops.
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 3:16pm On Oct 09, 2016
MayorofLagos:
How fulani herdsmen behave in Yorubaland:

They attack farmers and then for fear of counter attack, quickly escape into forest or police/army barrack if one is near. They send alert warning others that the ground is hot and to stay away.



How fulani herdsmen behave in Iboland:

They attack farmers and then warn the village head that the farmer killed their cows and they must be compensated. After receiving compensation. They send alert to the village and nearby villages giving a date they will return to attack them. The village then evacuates and abandon their farm and homesteads for fear of reprisal. Fulani return with cows to the abandoned villages and feed fat on crops.
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by Nobody: 3:24pm On Oct 09, 2016
MayorofLagos:


grin grin
Igbos are my inlaws, I love them!
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by simpleseyi: 3:45pm On Oct 09, 2016
90xtr93r:
Frustrated Afonjas keep denigrating their downtrodden Yoruba tribe with their relentless lies and propaganda against the Igbo Nation...

Here comes the greatest army general in the history of Yoruba people , who knelt, wept and begged Abacha for his miserable life on earth:

Oladipo Diya -

https://www.youtube.com/watch?v=h8VM9hZMYZ0

If Oladipupo Diya is the greatest Army general in he history of Yoruba, what tribe is Olusegun Obasanjo? is he Nnamdi Azikiwe's first son? What about Benjamin Adekunle Fajuyi the scorpion? Was he Alex Ekweme's last born? Have you forgotten what these two Yoruba Generals did to the enemies of Nigeria between 1967 and 1970?
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by biaframustcome: 4:01pm On Oct 09, 2016
EasternPride:
tutorialspoint
Jobs
Send18
Whiteboard
Net Meeting
Tools
Articles
Facebook

Google+

Twitter

Linkedin

YouTube
HOME TUTORIALS LIBRARY CODING GROUND TUTOR CONNECT VIDEOS
Search
Ionic Tutorial
Ionic Basics Tutorial
Ionic - Home
Ionic - Overview
Ionic - Environment Setup
Ionic CSS Components
Ionic - Colors
Ionic - Header
Ionic - Content
Ionic - Footer
Ionic - Buttons
Ionic - Lists
Ionic - Cards
Ionic - Forms
Ionic - Toggle
Ionic - Checkbox
Ionic - Radio Button
Ionic - Range
Ionic - Select
Ionic - Tabs
Ionic - Grid
Ionic - Icons
Ionic - Padding
Ionic Javascript Components
Ionic - JS Action Sheet
Ionic - JS Backdrop
Ionic - JS Content
Ionic - JS Forms
Ionic - JS Events
Ionic - JS Header
Ionic - JS Footer
Ionic - JS Keyboard
Ionic - JS List
Ionic - JS Loading
Ionic - JS Modal
Ionic - JS Navigation
Ionic - JS Popover
Ionic - JS Popup
Ionic - JS Scroll
Ionic - JS Side Menu
Ionic - JS Slide Box
Ionic - JS Tabs
Ionic Advanced Concepts
Ionic - Cordova Integration
Ionic - AdMob
Ionic - Camera
Ionic - Facebook
Ionic - In App Browser
Ionic - Native Audio
Ionic - Geolocation
Ionic - Media
Ionic - Splash Screen
Ionic Useful Resources
Ionic - Quick Guide
Ionic - Useful Resources
Ionic - Discussion
Selected Reading
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Ionic - JavaScript Popup
Advertisements


Previous Page Next Page
This service is used for creating popup window on top of the regular view which will be used for interaction with users. There are four types of popups − show, confirm, alert and prompt.

Using Show Popup
This popup is the most complex of all. To trigger popups we need to inject $ionicPopup service to our controller and then just add a method that will trigger the popup we want to use, in this case $ionicPopup.show(). The onTap(e) function can be used for adding e.preventDefault() method that will keep the popup open if there is no change applied to the input. When popup is closed, the promise object will be resolved.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

// When button is clicked, the popup will be shown...
$scope.showPopup = function() {
$scope.data = {}

// Custom popup
var myPopup = $ionicPopup.show({
template: '<input type = "text" ng-model = "data.model">',
title: 'Title',
subTitle: 'Subtitle',
scope: $scope,

buttons: [
{ text: 'Cancel' }, {
text: '<b>Save</b>',
type: 'button-positive',
onTap: function(e) {

if (!$scope.data.model) {
//don't allow the user to close unless he enters model...
e.preventDefault();
} else {
return $scope.data.model;
}
}
}
]
});

myPopup.then(function(res) {
console.log('Tapped!', res);
});
};

})
HTML Code
<button class = "button" ng-click = "showPopup()">Add Popup Show</button>
Ionic Popup Show
You are probably noticing in above example some options used. The following table will explain all of the options and their use case.

Show Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
scope Scope A scope of the popup.
buttons Array[Object] Buttons that will be placed in footer of the popup. They can use their own properties and methods. text is displayed on top of the button, type is the Ionic class used for the button, onTap is function that will be triggered when the button is tapped. Returning a value will cause the promise to resolve with the given value.
Using Confirm Popup
Confirm popup is simpler version of Ionic popup. It contains Cancel and OK buttons that users can press to trigger corresponding functionality. It returns the promise object that is resolved when one of the buttons are pressed.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

// When button is clicked, the popup will be shown...
$scope.showConfirm = function() {

var confirmPopup = $ionicPopup.confirm({
title: 'Title',
template: 'Are you sure?'
});

confirmPopup.then(function(res) {
if(res) {
console.log('Sure!');
} else {
console.log('Not sure!');
}
});

};

})
HTML Code
<button class = "button" ng-click = "showConfirm()">Add Popup Confirm</button>
Ionic Popup Confirm
The following table explains the options that can be used for this popup.

Confirm Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
cancelText string The text for the Cancel button.
cancelType string The Ionic button type of the Cancel button.
okText string The text for the OK button.
okType string The Ionic button type of the OK button.
Using Alert Popup
Alert is simple popup that is used for displaying alert information to the user. It has only one button that is used to close the popup and resolve the popups promise object.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

$scope.showAlert = function() {

var alertPopup = $ionicPopup.alert({
title: 'Title',
template: 'Alert message'
});

alertPopup.then(function(res) {
// Custom functionality....
});
};

})
HTML Code
<button class = "button" ng-click = "showAlert()">Add Popup Alert</button>
Ionic Popup Alert
Following table shows the options that can be used for alert popup.

Alert Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
okText string The text for the OK button.
okType string The Ionic button type of the OK button.
Using Prompt Popup
Last Ionic popup that can be created using Ionic is prompt. It has OK button that resolves promise with value from the input and Cancel button that resolves with undefined value.

Controller Code
.controller('MyCtrl', function($scope, $ionicPopup) {

$scope.showPrompt = function() {

var promptPopup = $ionicPopup.prompt({
title: 'Title',
template: 'Template text',
inputType: 'text',
inputPlaceholder: 'Placeholder'
});

promptPopup.then(function(res) {
console.log(res);
});

};

})
HTML Code
<button class = "button" ng-click = "showPrompt()">Add Popup Prompt</button>
Ionic Popup Prompt
Following table shows options that can be used for prompt popup.

Prompt Popup Options
Option Type Details
template string Inline HTML template of the popup.
templateUrl string URL of the HTML template.
title string The title of the popup.
subTitle string The subtitle of the popup.
cssClass string The CSS class name of the popup.
inputType string The type for the input.
inputPlaceholder string A placeholder for the input.
cancelText string The text for the Cancel button.
cancelType string The Ionic button type of the Cancel button.
okText string The text for the OK button.
okType string The Ionic button type of the OK button.
Previous Page Print Next Page
Advertisements


img img img img img img






Tutorials Point
Write for us FAQ's Helping Contact
© Copyright 2016. All Rights Reserved.

Enter email for newsletter
go

Alt enter shift key alt
grin grin
Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by 90xtr93r: 5:40pm On Oct 09, 2016
simpleseyi:
If Oladipupo Diya is the greatest Army general in he history of Yoruba, what tribe is Olusegun Obasanjo? is he Nnamdi Azikiwe's first son? What about Benjamin Adekunle Fajuyi the scorpion? Was he Alex Ekweme's last born? Have you forgotten what these two Yoruba Generals did to the enemies of Nigeria between 1967 and 1970?

I refer you to the article written by Sanusi Lamido Sanusi, the current Emir of Kano, a Fulani, where he revealed some truths about your people:
"YORUBAS ARE THE PROBLEM WITH NIGERIA"?
http://www.nigerianbulletin.com/threads/yorubas-are-the-problem-with-nigeria-by-sanusi-lamido-sanusi-elombah-com.111348/

... the Yoruba political leadership, as mentioned by Balarabe Musa, has shown itself over the years to be incapable of rising above narrow tribal interests and reciprocating goodwill from other sections of the country by treating other groups with respect. Practically every crisis in Nigeria since independence has its roots in this attitude. 

The Yoruba elite were the first, in 1962, to attempt a violent overthrow of an elected government in this country. In 1966, it was the violence in the West which provided an avenue for the putsch of 15th January. After Chief Awolowo lost to Shagari in 1983 elections, it was the discontent and bad publicity in the South-West which led to the Buhari intervention...


Benjamin Adekunle was a soldier who ranked higher than IBB, Danjuma, Obasanjo in his hay days in the military, but died miserably in abject poverty and squalor and his loudmouthed Yoruba tribesmen could not rescue him

The Hausa-Fulanis used him to prosecute the unholy war against Igbos and Easterners, and he was dumped him after mission accomplished. He died a miserable contractor, he was literary begging for contracts just to feed.

The bloody general was stripped off his military title; he was discharged dishonourably without his benefits, till he died he never received a single pension from the Nigerian State. It was indeed a miserable life for the tribalist.

But before his death Adekunle apologised to the Biafrans for his atrocities. And he owned up by revealing the fact that Yorubas and their Northern co-travellers declared war on Biafra because of crude oil in the Eastern region and not for unity of the country!

1 Like

Re: Yoruba And Hausa Fear God, Ibo Fear Fulani. by MayorofLagos(m): 7:52pm On Oct 09, 2016
90xtr93r:


I refer you to the article written by Sanusi Lamido Sanusi, the current Emir of Kano, a Fulani, where he revealed some truths about your people:
"YORUBAS ARE THE PROBLEM WITH NIGERIA"?
http://www.nigerianbulletin.com/threads/yorubas-are-the-problem-with-nigeria-by-sanusi-lamido-sanusi-elombah-com.111348/

... the Yoruba political leadership, as mentioned by Balarabe Musa, has shown itself over the years to be incapable of rising above narrow tribal interests and reciprocating goodwill from other sections of the country by treating other groups with respect. Practically every crisis in Nigeria since independence has its roots in this attitude. 

The Yoruba elite were the first, in 1962, to attempt a violent overthrow of an elected government in this country. In 1966, it was the violence in the West which provided an avenue for the putsch of 15th January. After Chief Awolowo lost to Shagari in 1983 elections, it was the discontent and bad publicity in the South-West which led to the Buhari intervention...


Benjamin Adekunle was a soldier who ranked higher than IBB, Danjuma, Obasanjo in his hay days in the military, but died miserably in abject poverty and squalor and his loudmouthed Yoruba tribesmen could not rescue him

The Hausa-Fulanis used him to prosecute the unholy war against Igbos and Easterners, and he was dumped him after mission accomplished. He died a miserable contractor, he was literary begging for contracts just to feed.

The bloody general was stripped off his military title; he was discharged dishonourably without his benefits, till he died he never received a single pension from the Nigerian State. It was indeed a miserable life for the tribalist.

But before his death Adekunle apologised to the Biafrans for his atrocities. And he owned up by revealing the fact that Yorubas and their Northern co-travellers declared war on Biafra because of crude oil in the Eastern region and not for unity of the country!


I told you repeatedly, Yorubas use fact-based information to interact here. Stop yarning bs fed into your head back in village. Now read the following and update your brain with facts.



FORMER Head of State and a chieftain of the All Progressives Congress (APC), Maj.-Gen. Muhammadu Buhari (Rtd), yesterday in his condolence message described the late Major General Benjamin Adekunle as a soldier who demonstrated unrelenting courage and sacrifice, towards keeping Nigeria united and in peace, during the 1967 civil war.

Buhari during his condolence visit to the Adekunle’s family in Lagos , noted that the late soldier demonstrated tough courage when the war was ferocious “such officer deserves honour and respect from those of us who were living together in unity today.”

The retired general was received by Adekunle’s children noted that Adekunle was among the three vibrant and courageous officers who fought doggedly to keep the nation one.

According to him, “My sincere condolence to the family and the nation on the death of a great soldier/officer of immense courage who led when the thing was tough.”

He noted that Adekunle, popularly known as the Black Scorpion, was a complete military personnel, who served this nation in his youth and laid a solid foundation for up- coming military officers to emulate.”

According to Buhari, “His war efforts remained a reference point. Without him and other patriots, modern Nigeria would not have been possible. His doggedness instantly became an attraction for young officers to emulate.”

On his meeting with Adekunle, Buhari said, “I met Adekunle as a young military officer, his doggedness attracted young officers to emulate his courage and confidence.”

(1) (Reply)

“Take Me With You”, Girl Begs President Muhammadu Buhari / Nigerian Emerges President-general Of World Youth Organisation / How Biafra Civil War Could Have Been Prevented Exactly 51 Years Ago (pics/video)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 95
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.