| ' + __('Select an index to view / edit its details') + ' |
');
}
function addField() {
$('#dialog-list').dialog('open');
}
function deleteField() {
checked = $('#table_grid input:checked');
if (checked.length == 0)
return false;
index_name = $('#indexlist').val();
delRows = [];
checked.each(function() {
field = $(this).parent().next().text();
delRows.push($(this).parent().parent());
for(i=0; i