You are here

protected function SortableTable::javascriptSelector in Sortableviews 8

Returns Sizzle/CSS compatible selector.

The selector to the container of sortable elements starting from .view-content.

Return value

string The selector (any string) or literally "self" when the actual container is .view-content itself.

Overrides SortableViewsStyleTrait::javascriptSelector

File

src/Plugin/views/style/SortableTable.php, line 28

Class

SortableTable
Style plugin to render each item as a row in a table.

Namespace

Drupal\sortableviews\Plugin\views\style

Code

protected function javascriptSelector() {
  return 'tbody';
}