I have searched and searched, and Trirand, despite offering a paid for product, offer almost zero useful documentation.
I am using server side code to build the grid model, i.e. a collection of JQGridColumn objects, but of course there is zero documentation for this object:
Columns = new List<JQGridColumn>()
            {
                new JQGridColumn
                    {
                        DataField = "Id",
                        PrimaryKey = true, 
                        Editable = false,
                        Visible = false
                    },
                new JQGridColumn
                    {
                        DataField = "FileName",
                        HeaderText = "File Name",
                        Editable = false
                    },
This is taken from the example they give. There are millions of answers in the mode of building the grid column with JavaScript, and I probably will eventually manage to translate one, but right now, can anyone answer my question please?