|
Title: Auto Sort not working Post by: swells808 on November 08, 2014, 08:34:23 AM Hello all. I was able to turn sorting on my columns so I can manually click on the headers to order things but I am having an issue making it happen manually. I am trying to set my grid so it sorts the shift column ascending then the date column after that.
My first try was to add the following code to the get users php file: Code: $page = isset($_POST['page']) ? intval($_POST['page']) : 1; Then I went into the html and added this: Code: <body bgcolor="#3d3d3d"> Code: sortName:shift, Title: Re: Auto Sort not working Post by: jarry on November 08, 2014, 05:02:47 PM The 'sortName' and 'sortOrder' properties must be string values.
Code: sortName:'shift,date', Title: Re: Auto Sort not working Post by: swells808 on November 10, 2014, 12:54:08 PM Thank you that moved it!
|