I am having a jquery data table in which there is a description field, i want to limit the words to 30 and add a show more link. when the user clicks on show more the comment of that particular id will open in the bootstrap modal. Till now i am able to do this much, but the comment is not coming in the bootstrap modal.
- class="container" style="margin-top:10px">
"FeedbackDetails" class="ui celled table">
S.No User Name Email ID Comment Designation Organization Contact No City Feedback Date - "myModal" class="modal fade" role="dialog">class="modal-dialog">class="modal-content">class="modal-header">
class
="modal-title">Feedback Commentclass="modal-body">""
>class="modal-footer">- class="btn btn-danger" data-dismiss="modal">Close
- public ActionResult LoadData()
- {
- using (DHIFeedbackEntities2 Ms = new DHIFeedbackEntities2())
- {
- var feedbacklist = Ms.FeedBacks.ToList
(); - return Json(new { data = feedbacklist }, JsonRequestBehavior.AllowGet);
- }
- }
Salman BegPosted Feb 27, 2019, 12:01 AM