Hi @Manasa
In your code, when the user clicks on quick edit, you've dynamically generated a <style> tag with CSS rules that will hide closed rows. However, you also mentioned that if the user drags data across the closed hidden line, the hidden line will change.
From your description, you want to prevent users from changing the style of hidden rows by dragging. To fix this, you can try using the CSS pointer-events property to disable mouse events, thus preventing the user from dragging the hidden row.
cssStr += "tr[iid='" + rowElementId + "']{visibility: collapse !important; pointer-events: none;}"
In this way, no matter how the user drags the data, the hidden row will remain invisible and will not have any effect on the user's operation.
However, considering that browsers may not support CSS styles, it is not recommended to use IE.But considering that the browser may not support CSS styles, it is not recommended to use IE. Or tell me the browser you use
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards
Cheng Feng