Hello,
You say:…” I see the toolbar coming up, but when i entered text and press ‘enter’, nothing happens.”…
and then you do
|
1 2 3 |
... $(‘#jqGrid’).jqGrid(‘filterToolbar’, { searchOnEnter: false, enableClear: false }); ... |
You want to search on enter, but in the same time you disable that searching.
When this option is of the grid try tosearch automatically whe you press some char on the searched field.
By the way which version is used.
Can you please post a simple server response (data) so that we test this and see the problem?
Thank you.
Kind Regards
Will
Guriddo Support Team
Hello,
You can try the U option in formatter
|
1 2 3 4 5 6 7 8 9 |
$grid->setColProperty('datefield', array( .... "formatoptions"=>array( "srcformat"=>"U", "newformat"=>"m/d/Y", // or what you want ... ), ... ); |
From timezone options we support the O and T options.
Note that the date format options support PHP style
Kind Regards,
Will
Guriddo Support Team
Hello,
I think that the missed setting is in the master table.
In master table you will need to set the primary key so that the grid know what to pass to the subgrid.
in your case you will need to do this in your master php file
|
1 2 3 |
.... $grid->setPrimaryKeyId("Matricule"); ... |
After this the $rowid variable contain the needed value of Matricule.
So you can
|
1 2 3 4 |
$rowid = jqGridUtils::Strip($_REQUEST["rowid"]); $SQL = "SELECT Matricule, DDN_viseo, date_dispo_init, Note_EIA, Pot_valide, mobilite_structu FROM coca_viseo WHERE Matricule='".$rowid."'"; $qres = jqGridDB::query($conn, $SQL); $result = jqGridDB::fetch_assoc($qres,$conn); |
IMHO the better approach is to use prepared statement like
|
1 2 3 4 5 6 |
$rowid = jqGridUtils::Strip($_REQUEST["rowid"]); $SQL = "SELECT Matricule, DDN_viseo, date_dispo_init, Note_EIA, Pot_valide, mobilite_structu FROM coca_viseo WHERE Matricule = ?"; $prep = jqGridDB::prepare($conn, $SQL, array($rowid)); $qres = jqGridDB::execute( $prep ); $result = jqGridDB::fetch_assoc($qres,$conn); |
Kind Regards
Will
Guriddo Support Team
Hello,
We have added a event isHasSubGrid, for a easy build non subgrid rows.
You can see it in GitHub
Kind Regards,
Will
Guriddo Support Team
Hello,
Yes we have not do this, since we want to make this at once.
Will be done next week.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
We have send you a e-mail.
Kind Regards,
Will
Guriddo Support Team
Hello,
We have made the needed changes: https://github.com/tonytomov/jqGrid/commit/a8fd172f4ce30918195b33e616abf6f638862617
1.The first day of week is calculated in the code and does not depend in the position of array
2.The ISO standards should not be changed. They are just to be used with these names
Can you please check if this is ok.
Thank you for your effort.
Kind Regards
Will
Guriddo Support Team
Hello,
I have made some changes in the language file.
Can you please check if everything is correct?
Thank you very much for your effort.
Kind Regards,
Will
Guriddo Support Team
Hello,
Can we ask you for some kind of testing, before we go to publish this?
This will be great.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello Mike,
Suppose you speak of something similar like this demo
The summary is on header, but when the group expand the summary data should appear in footer, while the summary in header should disappear.
When click to collapse group the footer should be hidden and the summary should appear on header.
We confirm that we can develop this. We will this make for the next release which is expected between end of February, 2016.
Kind Regards,
Will
Guriddo Support Team
Hello,
Glad we have found the problem and solution.
Please, look at the language file and tell us what should be changed.
We will make the changes avaialable to the next release.
Thank you again for your help.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you.
I’m not how this happen. We will investigate the problem.
In the mean time we have fixed the problem: https://github.com/tonytomov/jqGrid/commit/4051abfa40abed63736e8a12d11610afa71b329b
You can download the updated Italian lang files.
Thank you again.
Kind Regards,
Will
Guriddo Support Team
Hello,
No. It seems you do not have read the upgrade.
You can either load English and Italian language files.
I see that in italian file it is set correct
|
1 2 3 |
... $.jgrid.regional["it"]= { .. |
You will need in grid options just to set:
|
1 2 3 4 5 6 |
...jqGrid({ ... regional :"it", // this indicate to use the Italian file ... }); |
Kind Regards
Will
Guriddo Support Team
Hello,
We have found the problem and have fixed it. Sorry for the first post.
If the bug is showstopper we will send you the fixed code.
We will try to publish a new PHP version next week.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Try to set itemsLength = 2 or 5 in order to see if this is working.
By the way which database driver is used?
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top