I have editable row in jqgrid
. On double click of textbox
, it will open a popup box having textarea
.
On clicking OK
of popup, i need textarea
value back to jqgrid
row cell, from where double click is called.
Value of cell is inside title
attribute of td
.
I tried to change title attribute using rowid
, but jqgrid
cell does not reflects with my new value.
tr='#'+top_id;
$(tr).find('td[aria-describedby="Remarks"]').attr('title','txtremark.value');
It also shows value changed in developer tools, inspect element. But cell value is not changed.
I tried to reload grid on ok click
event and, onloadcomplete
event of grid again set title
attribute. But problem remains same.
Please guide me.