有没有办法在字段“prg_id”的表单字段选项方法中访问表单字段“wklloc_id”的值?
我的表单包含(除其他外)这些字段:
has_field 'wklloc_id' => ( type => 'Select', label => 'Winkel(locatie)' );
has_field 'prg_id' => ( type => 'Select', empty_select => 'Kies eerst een Winkel(locatie)', label => 'Productgroep' );
此时我的字段“prg_id”的选项方法包含:
sub options_prg_id
{
my ($self) = shift;
my (@prg_select_list,$productgroep,$productgroepen);
return unless ($self->schema);
$productgroepen = $self->schema->resultset( 'WinkelLocatieProductgroepen' )->search( {}, { bind => [ 2 ] } );
是否可以将绑定变量(即 2)的值设置为字段“wklloc_id”的值,如何做到这一点?请注意,这是在任何提交之前需要的。