You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/NGCP/Panel/Field/PeeringGroupSelect.pm

19 lines
502 B

package NGCP::Panel::Field::PeeringGroupSelect;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler::Field::Compound';
has_field 'id' => (
type => '+NGCP::Panel::Field::DataTable',
label => 'Peering Group',
do_label => 0,
do_wrapper => 0,
required => 1,
template => 'helpers/datatables_field.tt',
ajax_src => '/peering/ajax',
table_titles => ['#', 'Name', 'Priority', 'Description'],
table_fields => ['id', 'name', 'priority', 'description'],
);
no Moose;
1;