# $::lxdebug->message(0, "cur $current_where new $new_where");
- $self->show_list(output_position => $new_where, id => $::form->{clicked_id}) if ($new_where != ($current_where // -1));
+ $self->show_list(output_position => $new_where, id => $::form->{clicked_id}, set_type => 1) if ($new_where != ($current_where // -1));
$self->render($self->js);
}
sub show_list {
my $self = shift;
- my %params = Params::Validate::validate(@_, { output_position => 1, id => 0, requirement_spec_id => 0, });
+ my %params = Params::Validate::validate(@_, { output_position => 1, id => 0, requirement_spec_id => 0, set_type => 0, });
$params{requirement_spec_id} ||= $::form->{requirement_spec_id};
croak "Unknown requirement_spec_id" if !$params{requirement_spec_id};
$self->js->html('#column-content', $html);
- if ($params{id}) {
- $self->js
- ->val('#current_content_type', 'text-blocks-' . (0 == $params{output_position} ? 'front' : 'back'))
- ->val('#current_content_id', $params{id});
- }
+ $self->js->val('#current_content_type', 'text-blocks-' . (0 == $params{output_position} ? 'front' : 'back')) if $params{id} || $params{set_type};
+ $self->js->val('#current_content_id', $params{id}) if $params{id};
return $self->set_function_blocks_tab_menu_class(class => 'text-block-context-menu');
}
// -------------------------------------------------------------------------
ns.find_text_block_id = function(clicked_elt) {
- // console.log("id: " + $(clicked_elt).attr('id'));
var id = $(clicked_elt).attr('id');
+ // console.log("id: " + id);
if (/^text-block-\d+$/.test(id)) {
// console.log("find_text_block_id: case 1: " + id.substr(11));
return id.substr(11) * 1;
return id.substr(3) * 1;
}
- // console.log("find_text_block_id: case undef");
+ // console.log("find_text_block_id: case undef, id: " + id);
return undefined;
};
if (output_position)
return output_position;
- var type = $(clicked_elt).closest('#tb-back,#tb-front').data('type');
+ var type = $(clicked_elt).closest('#tb-back,#tb-front').data('type') || $('#current_content_type').val();
if (/^text-blocks-(front|back)/.test(type))
return type == "text-blocks-front" ? 0 : 1;