parent
436644318b
commit
e7ac2247ab
@ -0,0 +1,11 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'vent',
|
||||||
|
'marionette'
|
||||||
|
], function (vent, Marionette) {
|
||||||
|
|
||||||
|
return Marionette.ItemView.extend({
|
||||||
|
template: 'System/Logs/Table/Details/LogDetailsViewTemplate'
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,19 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'vent',
|
||||||
|
'backgrid'
|
||||||
|
], function (vent, Backgrid) {
|
||||||
|
|
||||||
|
return Backgrid.Row.extend({
|
||||||
|
className: 'log-row',
|
||||||
|
|
||||||
|
events: {
|
||||||
|
'click': '_showDetails'
|
||||||
|
},
|
||||||
|
|
||||||
|
_showDetails: function () {
|
||||||
|
vent.trigger(vent.Commands.ShowLogDetails, { model: this.model });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in new issue