Why Inline editing taking more space and flickering?
Why Inline editing taking more space and flickering?
sparkstersajjad
Posts: 10Questions: 4Answers: 0
I have created datatable with inline editing.
I have few question and issue.
- while clicking the column of inline edit it's taking extra space from top and flickering.
- How to get the data after mouse move out from the inline edit mode. Actually i want on onmousemove inine edit mode should close and the same it has to call one method with editable data.
- How to delete the entire row data and get the deleted data details.
- how to fecth the data immediatel after saving.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
That doesn't happen here - can you link to your page please so we can take a look.
You can create an
onmousemove
event, then callclose()
to close any opened edit.You can call
remove()
.postRemove
can give you details about that record.Changed data will be in
postSubmit
. The table will update automatically.Colin
Thanks Colin
How do I get the updated data with column name on mouseout. Now i'm getting only updated data not column name.
if you see my code i'm using on blur but i want in moustout event (please provide examples)
that's submit on blur - see example here
that's my second comment on my first reply above, but instead of
close()
, callsubmit()
to submit the data.Colin