Hello,
I’m not sure that I understand your problem.
What does multiselect plugin do? we do not know this plugin.
I’m confused to understand this:
In the form edit mode it is able to save all selected items to the database. But while in the edit mode the first item does not show checked
You speak that everything is ok in form edit, but in edit mode this have problems – what is the true?
You have a custom code with custom element – check your custom code again – what you expect and what is in real use.
Kind Regards
Hello,
Please, post your question in one place only. We see what is on the forums.
Please posting only once will save our time and efforts. This question will be answered here
Kind Regards,
Hello,
If you want to display the input to upper case you can do this in editoptions
|
1 2 3 4 5 6 7 8 9 |
colModel : [ ... {name: 'Myfield', editoptions: { dataInit: function (el) { $(el).css('text-transform', 'uppercase'); } }, ... ... ], |
in case you want to post to the server the upper cased field you can
use in form editing serializeEditData jqGrid event (note that this is a edit form option)
|
1 2 3 4 |
serializeEditData: function (postData) { postData.Myfield = postData.Myfield.toUpperCase(); return postData; } |
(You should add this event in add and edit mode)
for inline edit you can use serializeRowData
|
1 2 3 4 |
serializeRowData: function (postData) { postData.Myfield = postData.Myfield.toUpperCase(); return postData; } |
These are JavaScript examples. For PHP you have to add the appropriate commands.
Please let me know if you have difficulties to use this code in PHP.
Kind Regards,
Hello,
Kind Regards,
Hello,
Thank you for using our products.
As I say in my previous post it is not possible to develop FireBird PDO driver.
Currently we work on this driver: Ibase/Firebird driver
That are different things.
Kind Regards,
Hello,
In order this to work, please remove all echo and print_r functions from the grid php file. These comand do not allow the grid to load a data.
My question is: What is happen?
Is there a error? If yes what is the error?
What is the contents of the jqGrid.log file.
We have successfully run firebird with jqGrid in our system.
Anyway we will try to finish this driver at end of week, and we will notify you.
Kind Regards,
Hello Ari,
We have try to create a Firebird PDO driver, but we found a missing feature which stops us to do this.
The problem is that the driver does not support getColumnMeta. This function is very important to jqGrid.
We now have performed other investigations and it seems that we can develop a driver to Firebird, but when we use ibase one
Please let us know if you are interested on this, so that we go to support firebird via this driver.
Kind Regards,
Hello,
Sorry that I do not explain good what I mean.
Please of place of console.log write
alert(sv);
and try this in edit mode.
This way you will see what is the value sv and what is actually in grid so that the select does not select the right value.
Kind Regards,
Hello Ari,
If you do not use jqGrid PHP and only ADODb do you can make successful connection and query?
Did you try this?
What is the erro reported?
Please remove allĀ echo command and to the following:
1.At beginning of the grid PHP file do:
iniset(“display_errors”,1);
2. Set in grid file
$grid->showError = true;
3. set in grid file
$grid->debug = true
and see jqGrid.log file
In the meantime we will see what to do.
Kind Regards,
Hello Chris,
Thanks for the information and demo provided.
There was a bug in navgrid when saving the default behaviour.
I have fixed this problem.
You can use now your default setting skipping the responsible responsive option.
As I can see there is another bug here which I will try to fix next week.
You can download the updated version from GitHub.
Please let me know if the problem is fixed.
Kind Regards,
Hello,
You can use PConnect without problems.
Also you must first sure that adodb is correct installed and then make the connection.
After these operations you can use jqGrid with adoddb.
Kind Regards,
Hello Chris,
I think maybe I know why is this. Could you please let me know if you set 100% of the width how is the width of the grid in this case – it is little than 800?
This is related maybe with the new property when the width in the left navigator does not fit it will use a button.
Can you please try to set responsive => true in grid options and see what will be.
P.S Do you have set the latest CSS file and language file.
I see some settings which should be corrected
Kind Regards,
Hello Chris,
I think this is weird error.
In all cases I can not reproduce the problem, since I do not have the same enviroment.
Steps to look what is happen.
If possible can you please prepare a test case and send it to me – I mean full test case.
Thank you.
Kind Regards,
Hello Chris,
Not a problem. You can build your own loadState function which include jqGrid loadstate and reloading a data with a triggering. trigger(‘reloadGrid’);
This note remind me that afterSetGrid event is missing (we have already beforeSetGrid).
I have added this event, so you may enjoy it.
Kind Regards,
Hello,
Thank you for the description and test case.
This is true. The code in ver.5.0.0 does not work, but this does not work correct in ver.4.6 too instead that the code is running.
I have fixed this problem in GitHub and you can try it.
Please let me know if everything is OK.
Note that this is not finished, since we need a testing when a treeGrid is in action.
Thank you.
Kind Regards,
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top