How to handle click on icon inside itemTpl in DataView ExtJs
up vote
0
down vote
favorite
I am trying to handle a click on icon inside itemTpl
, but getting this error:
Uncaught TypeError: e.getTarget is not a function`.
This is the code of my DataView:
Ext.define('Admin.view.phone.managers.ManagerCard', {
extend: 'Ext.dataview.DataView',
itemTpl:
'<div class="managers-user-item">'+
'<div class="managers-user-image">' +
'<img src="{photo}" class="circular" ' +
'width="50" height="50"/>' +
'</div>'+
'<div class="managers-user-content">'+
'<div class="managers-user-title">{full_title}</div>'+
'<div class="managers-user-email">{email}</div>'+
'<div class="managers-user-date">{crdate}</div>'+
'<div class="managers-user-settings"><i class="fa fa-ellipsis-v" aria-hidden="true"></i></div>'+
'</div>'+
'</div>',
listeners: {
itemtap: function ( _this, list, index, target, record, e, eOpts ) {
if ( e.getTarget('.managers-user-settings') )
{
console.log('click');
}
}
}
});
Help me please.
extjs extjs6-modern
add a comment |
up vote
0
down vote
favorite
I am trying to handle a click on icon inside itemTpl
, but getting this error:
Uncaught TypeError: e.getTarget is not a function`.
This is the code of my DataView:
Ext.define('Admin.view.phone.managers.ManagerCard', {
extend: 'Ext.dataview.DataView',
itemTpl:
'<div class="managers-user-item">'+
'<div class="managers-user-image">' +
'<img src="{photo}" class="circular" ' +
'width="50" height="50"/>' +
'</div>'+
'<div class="managers-user-content">'+
'<div class="managers-user-title">{full_title}</div>'+
'<div class="managers-user-email">{email}</div>'+
'<div class="managers-user-date">{crdate}</div>'+
'<div class="managers-user-settings"><i class="fa fa-ellipsis-v" aria-hidden="true"></i></div>'+
'</div>'+
'</div>',
listeners: {
itemtap: function ( _this, list, index, target, record, e, eOpts ) {
if ( e.getTarget('.managers-user-settings') )
{
console.log('click');
}
}
}
});
Help me please.
extjs extjs6-modern
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to handle a click on icon inside itemTpl
, but getting this error:
Uncaught TypeError: e.getTarget is not a function`.
This is the code of my DataView:
Ext.define('Admin.view.phone.managers.ManagerCard', {
extend: 'Ext.dataview.DataView',
itemTpl:
'<div class="managers-user-item">'+
'<div class="managers-user-image">' +
'<img src="{photo}" class="circular" ' +
'width="50" height="50"/>' +
'</div>'+
'<div class="managers-user-content">'+
'<div class="managers-user-title">{full_title}</div>'+
'<div class="managers-user-email">{email}</div>'+
'<div class="managers-user-date">{crdate}</div>'+
'<div class="managers-user-settings"><i class="fa fa-ellipsis-v" aria-hidden="true"></i></div>'+
'</div>'+
'</div>',
listeners: {
itemtap: function ( _this, list, index, target, record, e, eOpts ) {
if ( e.getTarget('.managers-user-settings') )
{
console.log('click');
}
}
}
});
Help me please.
extjs extjs6-modern
I am trying to handle a click on icon inside itemTpl
, but getting this error:
Uncaught TypeError: e.getTarget is not a function`.
This is the code of my DataView:
Ext.define('Admin.view.phone.managers.ManagerCard', {
extend: 'Ext.dataview.DataView',
itemTpl:
'<div class="managers-user-item">'+
'<div class="managers-user-image">' +
'<img src="{photo}" class="circular" ' +
'width="50" height="50"/>' +
'</div>'+
'<div class="managers-user-content">'+
'<div class="managers-user-title">{full_title}</div>'+
'<div class="managers-user-email">{email}</div>'+
'<div class="managers-user-date">{crdate}</div>'+
'<div class="managers-user-settings"><i class="fa fa-ellipsis-v" aria-hidden="true"></i></div>'+
'</div>'+
'</div>',
listeners: {
itemtap: function ( _this, list, index, target, record, e, eOpts ) {
if ( e.getTarget('.managers-user-settings') )
{
console.log('click');
}
}
}
});
Help me please.
extjs extjs6-modern
extjs extjs6-modern
edited Nov 9 at 13:59
Sandy
1,3901620
1,3901620
asked Nov 9 at 8:59
a.yushko
6511
6511
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
itemtap definition seems wrong.
With ExtJS 6.6.0 it should be
itemtap: function (_this, index, el, record, e, eOpts)
Here is example of working fiddle which capture click on circular class: https://fiddle.sencha.com/#view/editor&fiddle/2nht
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
itemtap definition seems wrong.
With ExtJS 6.6.0 it should be
itemtap: function (_this, index, el, record, e, eOpts)
Here is example of working fiddle which capture click on circular class: https://fiddle.sencha.com/#view/editor&fiddle/2nht
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
add a comment |
up vote
1
down vote
accepted
itemtap definition seems wrong.
With ExtJS 6.6.0 it should be
itemtap: function (_this, index, el, record, e, eOpts)
Here is example of working fiddle which capture click on circular class: https://fiddle.sencha.com/#view/editor&fiddle/2nht
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
itemtap definition seems wrong.
With ExtJS 6.6.0 it should be
itemtap: function (_this, index, el, record, e, eOpts)
Here is example of working fiddle which capture click on circular class: https://fiddle.sencha.com/#view/editor&fiddle/2nht
itemtap definition seems wrong.
With ExtJS 6.6.0 it should be
itemtap: function (_this, index, el, record, e, eOpts)
Here is example of working fiddle which capture click on circular class: https://fiddle.sencha.com/#view/editor&fiddle/2nht
answered Nov 9 at 9:25
Saurabh Nemade
1,108515
1,108515
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
add a comment |
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
Thank you it solved my problem.
– a.yushko
Nov 9 at 9:32
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53222587%2fhow-to-handle-click-on-icon-inside-itemtpl-in-dataview-extjs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown