How to change jqGrid theme?

I am looking for a way to change the jqGrid theme for the current version. I started using jqGrid in my ASP.Net MVC 2 application and downloaded the demo solution / projects. I tried changing the grid theme by changing the javascript ui theme but this does not work for me. Looking at a document doesn't help me very much!

How do you change the jqGrid theme? I'm looking for:

  • List of css files that were used to configure the ui grid.
  • Steps to Change Theme to a New Topic
  • Prefer to link to the topic at .css / .js url - to update the theme to the latest version automatically.
+3
source share
2 answers

jQuery ThemeRoller 24 .

  • jqgrid Redmond ( ), Gallery, preview the theme, Download .
  • jquery-ui-1.10.4.custom themes -> redmond.

jqgrid.

:

<link rel="stylesheet" type="text/css" media="screen" href="<%=request.getContextPath()%>/themes/redmond/jquery-ui-1.10.4.custom/css/redmond/jquery-ui-1.10.4.custom.css" />
<script type="text/javascript" src="<%=request.getContextPath()%>/themes/redmond/jquery-ui-1.10.4.custom/js/jquery-1.10.2.js" ></script>
<script type="text/javascript" src="<%=request.getContextPath()%>/themes/redmond/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.js"></script>

jqgrid jquery-ui-1.10.4.custom.css, jquery-1.10.2.js, jquery-ui-1.10.4.custom.js .

: 1

themeroller

: 2

themes

+5

jQueryUI, jQueryUI bootstrap. jqGrid ( trirand jqGrid), :

+2

Source: https://habr.com/ru/post/1765210/


All Articles