1

. here Country Label should be a hyperlink to another window. I do not know whether it is possible or not. If it is possible, would you please share the demo here.

Oleg
  • 220,925
  • 34
  • 403
  • 798
Guru N
  • 75
  • 1
  • 7

1 Answers1

2

The feature exists in old versions of jqGrid too. You need just add formoptions.label in the definition of the corresponding column in the colModel. Try the following example

formoptions: {
    label: "<a target='_blank' " +
        "href='https://en.wikipedia.org/wiki/List_of_sovereign_states'>Country</a>"
}

See the demo: http://jsfiddle.net/OlegKi/qzxwfquq/1/

Oleg
  • 220,925
  • 34
  • 403
  • 798