Hello,
I mean example with test data where we can see where the problem ist!
Hope it is clear.
Kind Regards,
Will
Guriddo Support Team
Hello,
Could you please prepare a simple test case (with possible data) and send it to us.
With this description we can’t do much more.
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
This is a new event, which is not documented.. In the upcomming new docs it is documented as:
validationCell(cellobject, errormsg, iRow, iCol)
No triggred event available
If defined this event can replace the error message dialog (info_dialog), that appear when a validation error occur. The event is available in cell edit and inline edit modes.
The first parameter cellobject is a DOM cell object, the second parameter errormsg is the text that is returned when a validation error occur ( see colModel editrules options). The third and four parameters are the index row (not row id) and the column number (starting from 0).
Please let us know if you have difficulties using this event
Kind Regards
Will
Guriddo Support Team
Hello,
Thank you for this investigation. It was a bug. It is fixed now in GitHub.
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for finding this problem.
You are absolutely right.
During one optimization we have removed a situation like in your case.
The problem is fixed in GitHub.
You can download the fixed version from GitHub and test.
If you do this, please let us know if the problem is fixed.
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
The link for 4.6 version doesn’t work.
Anyway – to work both scripts you will need to remove key: true from colModel and just be a sure for the jsonReader to point the right property for the id. In your case
|
1 2 3 4 5 6 7 8 9 10 |
jsonReader : { root: "rows", page: "page", total: "total", records: "records", repeatitems: true, cell: "cell", id: "id", ... } |
Regards
Will
Guriddo Support Team
Hello,
Please show us how you do this so that the error appear. This can be done with simple example. Right?
Kind Regards,
Will
Guriddo Support Team
Hello,
We have fixed the problem.
Also additionally we have a dded a custom function which can be used to parse the excel string (not numbers).
The function is added in exportToExcel method and its name is replaceStr.
To use
|
1 2 3 4 5 6 |
$("#grid").jqGrid('exportToExcel', { replaceStr : function(v) { // do your replace here return v; } ); |
Kind Regards,
Will
Guriddo Support Team
Hello,
Right now I understand what you mean.
Unfortunately we do not support such functionality.
I have added this in our Todo list, but can not confirm any date when it will be available. We will try to implement this for the next release – which is planed for end of March.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for finding this problem.
This was a bug. It is fixed in GitHub and you can get the fixed version from here
Please let us know if the problem is fixed for you.
We do not plan to publish new version soon. Maybe the new release will be done end of March.
Kind Regards
Will
Guriddo Support Team
Hello,
Is this export to Excel or export to CSV?
Regards,
Will
Guriddo Support Team
Hello,
I can’t find the link too. Seems to be broken. Will try to search on the web.
Kind Regards,
Will
Guriddo Support Team
Hello,
Very complex code.
To achieve these you may need to set only 3 grid parameters. Try these:
|
1 2 3 4 5 6 7 8 |
$("#grid_id").jqGrid({ ... multiselect: true, multikey : 'shiftKey', multiboxonly : true, ... }); |
The only limitation here is that to select one row you will need to press shift key too.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for the feedback
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry. I have not read carfully.
The additional values are available only when searching, so it can not be used when editing. For now I can recommend you to do this via the SQL. Using the above example you can use the following SQL in setSelect
|
1 2 3 4 |
SELECT "" AS ShipCity, "All" AS CityName UNION SELECT DISTINCT ShipCity, ShipCity AS CityName FROM orders |
Kind Regards
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top