Skip to content

Commit 04ad083

Browse files
author
Atanas Atanasov
committed
fixed #497
1 parent 682ac15 commit 04ad083

File tree

8 files changed

+17
-5
lines changed

8 files changed

+17
-5
lines changed

dist/combined/css/gijgo.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,10 @@ table.gj-grid-bootstrap tbody tr td div[data-role="display"] {
866866
padding-top: 2px;
867867
}
868868

869+
.gj-grid-bootstrap-4 tbody tr.active {
870+
background-color: rgba(0,0,0,.075);
871+
}
872+
869873
/* Material Design Theme */
870874
.gj-grid-md {
871875
position: relative;

dist/combined/css/gijgo.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/combined/js/gijgo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2851,7 +2851,7 @@ gj.grid.config = {
28512851
* dataSource: '/Players/Get',
28522852
* uiLibrary: 'bootstrap4',
28532853
* columns: [
2854-
* { field: 'ID', width: 34 },
2854+
* { field: 'ID', width: 46 },
28552855
* { field: 'Name', title: 'Player' },
28562856
* { field: 'PlaceOfBirth', title: 'Place of Birth' },
28572857
* { title: 'Active?', field: 'IsActive', width: 80, type: 'checkbox', align: 'center' }

dist/modular/css/grid.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ table.gj-grid-bootstrap tbody tr td div[data-role="display"] {
113113
padding-top: 2px;
114114
}
115115

116+
.gj-grid-bootstrap-4 tbody tr.active {
117+
background-color: rgba(0,0,0,.075);
118+
}
119+
116120
/* Material Design Theme */
117121
.gj-grid-md {
118122
position: relative;

dist/modular/css/grid.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/grid/Grid.Base.column.type.Bootstrap.4.Checkbox.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
dataSource: '/Players/Get',
2121
uiLibrary: 'bootstrap4',
2222
columns: [
23-
{ field: 'ID', width: 34 },
23+
{ field: 'ID', width: 46 },
2424
{ field: 'Name', title: 'Player' },
2525
{ field: 'PlaceOfBirth', title: 'Place of Birth' },
2626
{ title: 'Active?', field: 'IsActive', width: 80, type: 'checkbox', align: 'center' }

src/grid/css/grid.base.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ table.gj-grid-bootstrap tbody tr td div[data-role="display"] {
113113
padding-top: 2px;
114114
}
115115

116+
.gj-grid-bootstrap-4 tbody tr.active {
117+
background-color: rgba(0,0,0,.075);
118+
}
119+
116120
/* Material Design Theme */
117121
.gj-grid-md {
118122
position: relative;

src/grid/js/grid.base.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ gj.grid.config = {
337337
* dataSource: '/Players/Get',
338338
* uiLibrary: 'bootstrap4',
339339
* columns: [
340-
* { field: 'ID', width: 34 },
340+
* { field: 'ID', width: 46 },
341341
* { field: 'Name', title: 'Player' },
342342
* { field: 'PlaceOfBirth', title: 'Place of Birth' },
343343
* { title: 'Active?', field: 'IsActive', width: 80, type: 'checkbox', align: 'center' }

0 commit comments

Comments
 (0)