Skip to content

Commit 0aa77e9

Browse files
committed
Float column added to integration tests mvc
1 parent b808ec0 commit 0aa77e9

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

src/Tests/integrationtests/Tests.Integration.Mvc/Views/Home/AllTypesData.cshtml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,16 @@
119119
<input data-lt placeholder="lt" />
120120
<input data-lte placeholder="lte" />
121121
</div>
122+
123+
<div id="custom-filter-Float" class="reload-table">
124+
<span>Float</span>
125+
<input data-eq placeholder="eq" />
126+
<input data-gt placeholder="gt" />
127+
<input data-gte placeholder="gte" />
128+
<input data-lt placeholder="lt" />
129+
<input data-lte placeholder="lte" />
130+
</div>
131+
122132
</div>
123133

124134
<table id="table-simple">
@@ -151,6 +161,9 @@
151161
<th>DoubleProperty</th>
152162
<th>DoubleNullable</th>
153163

164+
<th>Float</th>
165+
<th>FloatNullable</th>
166+
154167
<th>DecimalProperty</th>
155168
<th>DecimalNullable</th>
156169

@@ -198,6 +211,9 @@
198211
<th>Nested Model DecimalProperty</th>
199212
<th>Nested Model DecimalNullable</th>
200213

214+
<th>Nested Model Float</th>
215+
<th>Nested Model FloatNullable</th>
216+
201217
<th>Nested Model DateTimeProperty</th>
202218
<th>Nested Model DateTimeNullable</th>
203219
<th>Nested Model DateTimeOffsetProperty</th>
@@ -242,6 +258,9 @@
242258
<th>DoubleProperty</th>
243259
<th>DoubleNullable</th>
244260

261+
<th>Float</th>
262+
<th>FloatNullable</th>
263+
245264
<th>DecimalProperty</th>
246265
<th>DecimalNullable</th>
247266

@@ -286,6 +305,9 @@
286305
<th>Nested Model DoubleProperty</th>
287306
<th>Nested Model DoubleNullable</th>
288307

308+
<th>Nested Model Float</th>
309+
<th>Nested Model FloatNullable</th>
310+
289311
<th>Nested Model DecimalProperty</th>
290312
<th>Nested Model DecimalNullable</th>
291313

@@ -351,6 +373,7 @@
351373
"DateTimeNullable": getCustomFilterForColumn('DateTimeNullable'),
352374
"DateTimeOffsetProperty": getCustomFilterForColumn('DateTimeOffsetProperty'),
353375
"DateTimeOffsetNullable": getCustomFilterForColumn('DateTimeOffsetNullable'),
376+
"Float": getCustomFilterForColumn('Float'),
354377
}
355378
}
356379
}
@@ -384,6 +407,9 @@
384407
{ "data": "DoubleProperty", searchable: false },
385408
{ "data": "DoubleNullable", searchable: false },
386409
410+
{ "data": "Float", searchable: false },
411+
{ "data": "FloatNullable", searchable: false },
412+
387413
{ "data": "DecimalProperty", searchable: false },
388414
{ "data": "DecimalNullable", searchable: false },
389415
@@ -428,6 +454,9 @@
428454
{ "data": "NestedModel.DoubleProperty", searchable: false, "defaultContent": "" },
429455
{ "data": "NestedModel.DoubleNullable", searchable: false, "defaultContent": "" },
430456
457+
{ "data": "NestedModel.Float", searchable: false },
458+
{ "data": "NestedModel.FloatNullable", searchable: false },
459+
431460
{ "data": "NestedModel.DecimalProperty", searchable: false, "defaultContent": "" },
432461
{ "data": "NestedModel.DecimalNullable", searchable: false, "defaultContent": "" },
433462

0 commit comments

Comments
 (0)