Hello Andrus,
If you quote me, please, do it correct. I wrote you: “I don't use virtual scrolling myself. …
Hello!
I just wrote the first answer on your question on the stackoverflow. If I will examine the problem more carefully I will post more full sggestions how to fix the bug.
Best regards
Oleg
Hello!
You can use sorttype
I wrote you in the previous answer that cellattr
You can use cellattr attribute in the colModel for a column to set custom tooltip. For example
cellattr: function () { return ' title="my custom fixed tooltip for the column"'; }
define the attribute as a fixed text. I use such form for grid having many checkboxs. In the case I set just the column title as the tooltip.
Another more full form can be
cellattr: function (rowId, val, rawObject) {
Hi Kevin,
all problems what you describe can be combination of design, implementation problrms together with the jqGrid problems. If you would provide the corresponding testcase (HTML and JavaScript code with the testdata) I could try to look at the problem.
Best regards
Oleg
jQuery do allows to use meta-characters (special characters)
Small inprovements to your code. You use trows = $($t.rows) and then trows[j].cells.style.display = show. Insetead of that one can $t.rows[j].cells.style.display = show.
Now my opinion about the usage of for loop instead of .each. I personally use mostly for
I agree, but if we do optimisation we should use this:
this.cells.style.display = show;
Additionally if we do optimisation of the lines we can remove unused
If you made some reset with ColumnChooser try to repeat the test after the simple fix described here. The fix is already in the github code.
Hello Tony,
in my opinion kobruleht
Hi, Tony!
It seems that there are differences how different web browsers works with disabled elements. If you look at the demo in IE you you will be able to make double-click on the disabled checkbox. So the “click” event which I describe will be fired in IE in case of
Helo!
You should use sortGrid method to do the sorting with shows the appropriate sort icon.
Best regards
Oleg
Do you probably mean the usage of $()
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top