Skip to content

Commit 30f5ccc

Browse files
committed
Merge pull request #181 from tommycox/7.x-3.x-fix-views-grid-export
Added necessary definitions for exporting views grids with bootstrap settings
2 parents 767da80 + e4e60b8 commit 30f5ccc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

views/plugins/views_plugin_style_grid_bootstrap.inc

+4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ class views_plugin_style_grid_bootstrap extends views_plugin_style {
1717
function option_definition() {
1818
$options = parent::option_definition();
1919

20+
$options['responsive_toggle'] = array('default' => FALSE, 'bool' => TRUE);
21+
$options['columns_lg'] = array('default' => '');
2022
$options['columns'] = array('default' => '4');
23+
$options['columns_sm'] = array('default' => '');
24+
$options['columns_xs'] = array('default' => '');
2125
$options['alignment'] = array('default' => 'horizontal');
2226
$options['fill_single_line'] = array('default' => TRUE, 'bool' => TRUE);
2327
$options['summary'] = array('default' => '');

0 commit comments

Comments
 (0)