Hello,
It is a good idea to read the docs where you can easy solve the task. I can’t see that this should be fixed, since this is a feature of the nature of the products using.
Now to solve the problem you should use formater and the additional two parameters as described into the documentation here:
Below the code:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
$("#list1").jqGrid({ datatype: "xml", colModel:[ {name:'success',index:'SCOUNT', width:90, sortable:true, formatter:function(cellvalue, options, rowObject, isExp, exporttype) { if( isExp && exporttype === 'pdf' { return cellvalue; } else if(cellvalue!=0) var html ='<span sugar="sugar0b" style="cursor:pointer;" onClick="showSuccessDetails('+options.rowId+');return false;"><u>'+cellvalue+'</u></span>'; else var html ='<span sugar="sugar0b" style="cursor:pointer;">'+cellvalue+'</span>'; return html }}, {name:'failure',index:'FCOUNT', width:90, sortable:true, formatter:function(cellvalue, options, rowObject, isExp, exporttype) { if( isExp && exporttype === 'pdf' { return cellvalue; } else if(cellvalue!=0) var html ='<span sugar="sugar0b" style="cursor:pointer;" onClick="showFailureDetails('+options.rowId+');return false;"><u>'+cellvalue+'</u></span>'; else var html ='<span sugar="sugar0b" style="cursor:pointer;">'+cellvalue+'</span>'; return html }}] |
Hope this helps
Kind Regards
Will
Guriddo Support Team
Hello,
Unfortunately checkbox control is not supported at all in searching.
We can consider this in the future, but you can simple use a select control with Yes/No value in order to replace checkbox functionality.
Kind Regards,
WIll
Guriddo Support Team
Hello,
I think that a good idea is to perform some logic which tell you in which time is the last triggering. Since both commands are executed at client side you can store this in variable and perform the triggering in the desired time.
Kind Regards,
WIll
Guriddo Support Team
Hello,
We can not reproduce the error you have. We have tested with Guriddo jqGrid 5.3.1 and
5.3.2 and there is no error.
Also the fileas which are related to jqGrid are minimum 3 – jqGrid javascript , jqGrid CSS file and jqGrid Language file.
Are you sure that you use jqGrid version 4.3.1? This version is 7 years old and we do not support it.
Some settings in the grid tell us that you use free-jqGrid and not Guriddo jqGrid
Can you please prepare a online example in order to look into the problem.
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for the test case.
It is much quicker way to resolve the problems with demo.
The problem is exactly in the place where you point.
The fix is in GitHub.
Kind Regards,
Will
Guriddo Support Team
Hello,
Can you prepare a simple working test case with data and send it to: support at guriddo dot net ?
Thank You
Kind Regards,
Will
Guriddo Support Team
Hello,
Can you please post a simple setup with data in order to demonstrate the problem?
We are not sure that exactly that this piece of code is wrong.
Thank you
Kind Regards
Will
Guriddo Support Team
Hello,
Which version of jqGrid is used?
The code you posted is really complex and we have difficulties to read them.
Can you please post just a simpler code so that we can isolate the problem?
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Maybe it will be available for the next release, which is scheduled for end of May this year.
Kind Regards,
Will
Guriddo Support Team
Hello,
I’m not sure that I understand the question. Can you please explain it more detailed?
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry, but we are unable to understand what you mean. Can you please explain it more detailed.
The option scroll:1 does not mean scrolling to one record, but one portion of rowNum. The definition is:
When scroll is set to value (eg 1), the grid will just hold the visible lines. This allow us to load the data at portions whitout to care about the memory leaks.
Kind Regards,
Will
Guriddo Support Team
Hello,
Unfortunately we do not support such kind of layout. There is a similar laout, but it is needed first to create the standard grid. See viewGridRow method here.
Kind Regards
Will
Guriddo Support Team
Hello,
Direct this is not supported, but it can be done after you set a certain class to this group.
By example if the class you set after calling the setGroupHeader has a name myfirstclass and the id of the grid is grid
then you can access the header element like this
|
1 2 3 |
$("#grid").jqGrid('setGroupHeaders',{....}); var element = $("#gview_grid").find('.myfirstclass'); |
Then you can do what you want with this element
Kind Regards,
Will
Guriddo Support Team
Hello,
Again you will need to look at the docs for setGroupHeaders method
There is a option called className for the item, when grouping is set
Kind Regards,
Will
Guriddo Support Team
Hello,
Currently we work on this new feature. We will be little delayed.
We will let you know when we are ready for testing.
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top