Hello,
Thanks for the link. That is the reason that I say that this should be done server side – diffrent SQL serveres – diffrent behaviours, diffrent optimizations. 
Regards
Tony
Hello,
To continue with this
$limit = $_REQUEST['rows']; // the limit of rows
$start = $limit*$page – $limit; // the page from previous post
$SQL = “SELECT … LIMIT “.$start.” , “.$limit; 😉
Hello,
Check your server responce. I see
|
1 |
{"page":"0","total":5,"records":"42","rows"....<br /><br />page is 0, but total pages are 5. This causes the pager not to apper. |
Hello,
Check to see if you point to the right path of the image. This acctually means that you have not set the full path to the image.
Regards
Tony
Hello,
….navGrid(“#pager”, {add:false,edit:false,del:false},
{}, // edit options
{}, // add options
{}, // del options
{zIndex:2000} //search options
); // end navigator
Hello,
It is a good practice to read what is new of every release and what should be changed before posting some issue.
Regards
Tony
Hello,
I do not think that it is so complicated. Look at demo server.php (PHP variant)
Here I do
$page = $_REQUEST['page']; // get the requested page
$limit = $_REQUEST['rows']; // get how many rows we want to have into the grid
then get the total records
$result = mysql_query(“HERE THE SQL”);
$row = mysql_fetch_array($result,MYSQL_ASSOC); // fetch data
$count = $row['count']; // at end the count
Hello,
Do you have the same problem in FF?
Be a sure that the jqModal.css is loaded.
Regards
Tony
Hello Adam,
Thank you very much for this.
Short – In the next alfa release (comming soon) I do not support (and will not support) jQuery UI Dialog. Using UI Dilaog causes a lot of problems and moreover it is so slow in IE. Finaly I make a decision to implement my own modal function which can be seen in the upcomming release. It is not finished yet, but I hope that it will be done until the finall.
If you switch to jqModal you will not have such problem.
Best Regards
Tony
Hello,
Local sorting is performed only on numeric date fields. It is a known limitation. Supporting a full range of date sorting including diffrent language setting requiere a code bigger than jqGrid. In order to resolve the problem add a hidden column with numbers or other acceptable date format and perform the sort on that column when you try to sort on the other one. Use onSortCol event for this purpose.
Regards
Tony
Hello,
Try
if (parseInt(rowdata.x_days_pastdue) == 0)…
If you do not have condition does the setCell work?
Regards
Tony
Hello,
I suppose that you use inline editing, since in form editing this behaviour is by default.
In order to do that you need to use succesfunc and aftersavefunc – see documentatiopn. If all data is posted with succes you can use trigger(“reloadGrid”) in aftersavefunc.
Regards
Tony
Hello,
I suppose if you enable the add edit or del the modal will not appear too. I think it is a z-index IE issue. In the search parameters try with z-ndex:2000. By default all modal forms have a z-index 950.
Regards
Tony
Hello,
Could you please post the code or make a link to the problem?
Regards
Tony
Hello Roger,
Thanks. I found this bug before some days. It is a jqGrid bug. It is corrected and I will publish alfa 3 soon.
Thanks
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top