1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-26 06:50:09 +03:00

Capture enter key for extended attribute modification

This commit is contained in:
Tino Vazquez 2014-03-11 18:24:01 +01:00
parent 56ccbddf1e
commit 8b7027e438

View File

@ -2756,8 +2756,22 @@ function insert_extended_template_table(template_json,resource_type,resource_id,
input = $("#value_td_input_"+key_str).html('<textarea class="input_edit_value" id="input_edit_'+key_str+'" type="text"></textarea>');
$('#input_edit_'+key_str).val(value_str);
// Capture the enter key
$('#input_edit_'+key_str).die();
$('#input_edit_'+key_str).live("keypress", function(e) {
var ev = e || window.event;
var key = ev.keyCode;
if (key == 13 && !ev.altKey)
{
$('#input_edit_'+key_str).blur();
}
})
});
$(".input_edit_value").live("change", function() {
var key_str = $.trim(this.id.substring(11,this.id.length));
var value_str = $.trim(this.value);