jqgrid_utils 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jqgrid_utils.js +2 -2
- package/jqgrid_utils.js +2 -2
- package/package.json +1 -1
package/dist/jqgrid_utils.js
CHANGED
|
@@ -785,11 +785,11 @@ __cell_format(cell_value, format)
|
|
|
785
785
|
{
|
|
786
786
|
if (cell_value == 0 || cell_value === 'fail')
|
|
787
787
|
{
|
|
788
|
-
cell_value = '<i class="fa fa-times-circle" aria-hidden="true" style="color:#ff0000;"></i>';
|
|
788
|
+
cell_value = '<i data-check="failed" class="fa fa-times-circle" aria-hidden="true" style="color:#ff0000;"></i>';
|
|
789
789
|
}
|
|
790
790
|
else
|
|
791
791
|
{
|
|
792
|
-
cell_value = '<i class="fa fa-check-circle" aria-hidden="true" style="color:#008000;"></i>';
|
|
792
|
+
cell_value = '<i data-check="ok" class="fa fa-check-circle" aria-hidden="true" style="color:#008000;"></i>';
|
|
793
793
|
}
|
|
794
794
|
}
|
|
795
795
|
return cell_value;
|
package/jqgrid_utils.js
CHANGED
|
@@ -784,11 +784,11 @@ __cell_format(cell_value, format)
|
|
|
784
784
|
{
|
|
785
785
|
if (cell_value == 0 || cell_value === 'fail')
|
|
786
786
|
{
|
|
787
|
-
cell_value = '<i class="fa fa-times-circle" aria-hidden="true" style="color:#ff0000;"></i>';
|
|
787
|
+
cell_value = '<i data-check="failed" class="fa fa-times-circle" aria-hidden="true" style="color:#ff0000;"></i>';
|
|
788
788
|
}
|
|
789
789
|
else
|
|
790
790
|
{
|
|
791
|
-
cell_value = '<i class="fa fa-check-circle" aria-hidden="true" style="color:#008000;"></i>';
|
|
791
|
+
cell_value = '<i data-check="ok" class="fa fa-check-circle" aria-hidden="true" style="color:#008000;"></i>';
|
|
792
792
|
}
|
|
793
793
|
}
|
|
794
794
|
return cell_value;
|
package/package.json
CHANGED