I am trying to implement Edit All functionality. Sometime we need to edit all items. So insted of editing one by one, i am trying to EditAll and SaveAll. When user click on EditAll button all the rows of data comes in edit mode with textbox, and when user click on SaveAll all the row data will be saved.
I am implementing the above scenerio in below example https://www.aspsnippets.com/Articles/ASPNet-MVC-CRUD-Select-Insert-Edit-Update-and-Delete-in-ASPNet-MVC-Razor.aspx
when click on EditAll, Save All and Cancel button should be visible.
<button title="SaveData" type="button" class="btn btn-default btn-sm Edit">
<span class="glyphicon-floppy-dis"></span>
</button>
When saving the data,I am using this button, when i am perform some operation the span is going to display none, how i can manually set display true.