In previous version when inline editing all looking good:
But in new version it is looking like that (i put read border over):

How to fix that?
I am using jQuery 1.6.1, jQueryUI 1.8.13
I also have using the latest jqGrid css file
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The reason seems to me the wrong hover effects included in the jqGrid 4.1.0 on the
<span>element with the save and cancel icons:see the source code of jquery.fmatter.js.
If I correct understand the problem the adding of ‘ui-state-hover’ class overwrites the
background-positionto50% 50%, so the icons for the disk (ui-icon-disk) or the cancel icon (ui-icon-cancel) will not more displayed. Instead of that the middle of the background image are displayed.So I suggest just remove the hover effects inside of
loadComplete:See the demo.
UPDATED:: I found a better way to fix the problem. First we can defive the functions
iconHoverFixedandiconNotHoverFixedas followingand then we can fix the hovering problem so:
See the new demo here or here.