- EmberJS - Home
- EmberJS - Overview
- EmberJS - Installation
- EmberJS - Core Concepts
- Creating and Running Application
- EmberJS - Object Model
- EmberJS - Router
- EmberJS - Templates
- EmberJS - Components
- EmberJS - Models
- EmberJS - Managing Dependencies
- EmberJS - Application Concerns
- EmberJS - Configuring Ember.js
- EmberJS - Ember Inspector
EmberJS-Template Stopping Event Propagation
Description
You can also stop propagation by disabling propagation to the parent node. The parameter bubbles=false will stop the browser from the propagating an event. It ensures that the button link is not clicked.
Syntax
{{#link-to 'link text'}}
<button {{action 'actionName' bubbles=false}}>ButtonName</button>
{{/link-to}}
Example
<!DOCTYPE html>
<html>
<head>
<title>Emberjs Stopping Event Propagation</title>
<!-- CDN's -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.1/handlebars.min.js"></script>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script>
<script src="https://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script>
<script src="https://builds.emberjs.com/release/ember.debug.js"></script>
<script src="https://builds.emberjs.com/beta/ember-data.js"></script>
</head>
<body>
<script type="text/x-handlebars">
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="index">
<div {{action 'User'}}>
<h2> Link 1 </h2><br/>
<!-- disabling the multiple calls for link 1 by making bubble=false -->
<span {{action 'User1' bubbles=false}}>
<h2> Link 2 </h2>
</span>
</div>
</script>
<script type="text/javascript">
App = Ember.Application.create();
App.IndexRoute = Ember.Route.extend({
actions: {
//creating an action event
User: function () {
document.write('Welcome to Tutorialspoint');
},
//creating an action event
User1: function () {
document.write('Hello');
}
}
});
</script>
</body>
</html>
Output
Let's carry out the following steps to see how above code works:
Save above code in temp_act_event_prop.htm file
Open this HTML file in a browser.
Advertisements