31 lines
885 B
31 lines
885 B
package NGCP::Panel::Field::Contact;
|
|
use HTML::FormHandler::Moose;
|
|
extends 'HTML::FormHandler::Field::Compound';
|
|
|
|
has_field 'id' => (
|
|
type => '+NGCP::Panel::Field::DataTable',
|
|
label => 'Contact',
|
|
do_label => 0,
|
|
do_wrapper => 0,
|
|
required => 1,
|
|
template => 'helpers/datatables_field.tt',
|
|
ajax_src => '/contact/ajax',
|
|
table_titles => ['#', 'Reseller', 'Name', 'Email'],
|
|
table_fields => ['id', 'reseller_name', 'firstname', 'email'],
|
|
custom_renderers => {
|
|
firstname => 'function ( data, type, full, opt ) { var sep = (full.firstname && full.lastname) ? " " : ""; return (full.firstname || "") + sep + (full.lastname || ""); }',
|
|
},
|
|
);
|
|
|
|
has_field 'create' => (
|
|
type => 'Button',
|
|
do_label => 0,
|
|
value => 'Create Contact',
|
|
element_class => [qw/btn btn-tertiary pull-right/],
|
|
);
|
|
|
|
no Moose;
|
|
1;
|
|
|
|
# vim: set tabstop=4 expandtab:
|