make table cells clickable with hyperlink callback

This commit is contained in:
Oliver Gorwits
2012-01-07 19:36:26 +00:00
parent 3aa0a56de5
commit e7860b2aea
3 changed files with 15 additions and 3 deletions

View File

@@ -35,11 +35,15 @@ ajax '/ajax/content/search/vlan' => sub {
results => $set,
columns => [
{ key => 'dns', label => 'Device' },
{ key => [qw/vlan description/], label => 'Description' },
{ key => 'vlan.description', label => 'Description' },
{ key => 'model', label => 'Model' },
{ key => 'os', label => 'OS' },
{ key => 'vendor', label => 'Vendor' },
],
hyperlink => sub {
my $row = shift;
return '/device?q=' . $row->ip;
},
}, { layout => undef };
};