Inlineediting functionality
Inlineediting functionality
c-oleti
Posts: 4Questions: 1Answers: 0
Hi,i am not able to save the update value in inline editing or edit button in java.
This question has accepted answers - jump to:
This discussion has been closed.
Answers
Have you implemented the required client / server communication in your Java server-side?
Allan
Hi allan thanks for giving for reply i am done implementation for inline.
Hi allan i want to know one thing when i am adding sDom: 'lfrtip', top of the table dropdown button is displayed but edit and remove buttons are hidden.can u please let me know how can i make visible both dropdown and edit button
Each letter in the
dom
parameter is a feature.B
is the character for Buttons and it tells DataTables where to put the Buttons. You don't have aB
in the above, hence the issue. I'd suggest reading over thedom
docs, as it is a complex property that one.Allan
Hi allan,
Still i am not able to resolve the issue please find the attachments,
For display the number of records in a page i mentioned as dropdown box "dom": 'lrtip' a and if i mentioned that Edit and Remove buttons are not displayed.
This is my code
var editor; // use a global for the submit and return data rendering in the examples
$(document).ready(function() {
} );
You can't define the same parameter twice - it would be like trying to say:
var i=0; i=1;
and expectingi
to be both 0 and 1!I would suggest in the first instance you use:
as your starting point and then simply add the
l
option in that string. Perhaps immediately after theB
for example.Alternatively use the
pageLength
button type, as shown and explained in this example.Allan