Sha256: f280a2de8e21ca12a9d705d50cabd8315c19d8dde89f6880fc858370a7b2ded0

Contents?: true

Size: 1021 Bytes

Versions: 41

Compression:

Stored size: 1021 Bytes

Contents

= ucbr_table_tag(class: 'table-condensed') do
  %thead
    %tr
      %th{style: 'width="1%"'}
      %th First Name
      %th Last Name
      %th Email
      %th Department
  %tbody
    - @lps_entries.each do |entry|
    -   entry_id = "ldap_uid_#{entry.uid}" 
      %tr{id: entry_id, class: ldap_entry_class(entry)}
        %td= link_to_ldap_person_entry(entry) 
        %td= entry.first_name 
        %td= entry.last_name 
        %td= entry.email 
        %td= entry.departments 

:javascript
  $('#lps-modal table').dataTable({
    "bPaginate": false,
    "bFilter": false,
    "bInfo": false,
    "oLanguage": {
      "sEmptyTable": "No matches for your search."
    },
    "aaSorting": [ [1, "asc"], [2, "asc"] ],
    "aoColumnDefs": [
      { "bSortable": false, "aTargets": [ 0 ] },   // selection link
      { "aDataSort": [ 1, 2 ], "aTargets": [ 1 ] }, // first name
      { "aDataSort": [ 2, 1 ], "aTargets": [ 2 ] }, // last name
      { "aDataSort": [ 3, 1, 2 ], "aTargets": [ 3 ] }, // department
    ]
  });

Version data entries

41 entries across 41 versions & 2 rubygems

Version Path
ucb_rails_user-7.0.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-6.2.2 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-6.2.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-6.1.1 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-6.1.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-6.0.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-5.0.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.1.2 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.1.1 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.1.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.7 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.6 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.5 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.4 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.3 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.2 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.1 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.0 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-3.0.2 app/views/ucb_rails_user/lps/_results.html.haml
ucb_rails_user-4.0.0.beta1 app/views/ucb_rails_user/lps/_results.html.haml