Lines Matching refs:find

5         this.$capiton = $(element).find('.plugin__filelisting_capiton');
6 this.$collapsible = $(element).find('.plugin__filelisting_collapsible');
7 this.$content = $(element).find('.plugin__filelisting_content');
9 this.$headertable = $(element).find('.plugin__filelisting_headertable');
10 this.$bodytable = $(element).find('.plugin__filelisting_bodytable');
12 this.$footer = $(element).find('.plugin__filelisting_footer');
71 this.$content.find('tbody').on('click', 'tr[data-namespace] a', $.proxy(function (event) {
169 this.$content.find('tbody').append(fileRows);
179 var $input = this.$filter.find('input');
197 var filter = this.$filter.find('input').val(),
203 $rows = this.$content.find('tbody tr'),
209 text = $row.find('td.plugin__filelisting_cell_name a').text();
236 this.$content.find('thead th').wrapInner('<a href="#">');
238 this.$content.find('thead th a').prepend('<span>');
241 this.$content.find('thead th a').on('click', $.proxy(function(event) {
248 var $order = this.$sortHeader.find('span');
250 this.$content.find('thead th').not(this.$sortHeader).find('span').text('');
276 var $root = this.$content.find('tbody tr[data-namespace="' + namespace + '"]'),
277 $rows = this.$content.find('tbody tr[data-childOf="' + namespace + '"]'),
282 var colspan = this.$headertable.find('th').first().attr('colspan'),
287 if (this.$sortHeader.find('span').text() === this.options.sortDesc) {
291 var dataA = $(a).find('td').eq(index).data('sort'),
292 dataB = $(b).find('td').eq(index).data('sort');
309 this.$content.find('tbody').append($dirs, $files);
326 var $deleteButton = this.$collapsible.find('button[name="do[plugin_filelisting_delete]"]');
341 var $deleteButton = this.$collapsible.find('button[name="do[plugin_filelisting_delete]"]');
343 if (this.$content.find('input[type=checkbox]:checked').length === 0) {
428 var $bodyTable = jQuery(container).find('.plugin__filelisting_bodytable table');
429 var $headerWrapper = jQuery(container).find('.plugin__filelisting_headertable');
430 var tablediff = $bodyTable.width() - $headerWrapper.find('table').width();