View file Web Template Ktpl/package/templates/ktpl/js/admin-props.js

File size: 636B
function filterPropsList(){

    $('#props-bind').show();

    if ($('select[name=props_list]').length == 0) { return; }

    var full_list = $('select[name=props_list]');
    var current_list = $('#ctypes-props-toolbar select[name=prop_id]');

    current_list.html(full_list.html());

    if ($('#datagrid tbody tr').length <= 1){ return; }

    $('#datagrid tbody tr').each(function(){

       var row = $(this);
       var prop_id = $('a.edit', row).attr('href').split('/').pop();

       $('option[value='+prop_id+']', current_list).remove();

    });

    if ($('option', current_list).length == 0) { $('#props-bind').hide(); }

}