谢谢您的反馈。
针对您的问题,您是可以在客户端通过css设置column header的背景色。
代码参考:
- <script type="text/javascript">
- $(document).ready(function () {
- $(".wijmo-wijgrid-headerrow th:eq(0)").css("background-color", "blue");
- $(".wijmo-wijgrid-headerrow th:eq(1)").css("background-color", "red");
- $(".wijmo-wijgrid-headerrow th:eq(2)").css("background-color", "green");
- });
- </script>
复制代码
|