My Javascript code is as follows
`
<script type="text/javascript">
$(document).ready(function() {
$(document).on('click', '.modal_view_user_btn', function() {
$('#modal_view_user').modal('show');
$tr = $(this).closest('tr');
var data = $tr.children("td").map(function() {
return $(this).text();
}).get();
console.log(data);
$('#vid_user_name').val(data[0]);
$('#vid_user_email').val(data[1]);
$('#vid_user_designation').val(data[2]);
$('#vid_user_mobile').val(data[3]);
$('#vid_user_landline').val(data[4]);
$('#vid_user_role_id').val(data[5]);
$('#vid_user_login_status').val(data[6]);
$('#vid_user_picture').val(data[7]);
0
});
});
</script>
`
I used above code to fetch data in modal. placed one input as follows:
`
<div class="row">
<div class="col-md-6">
<div class="mb-3">
<label for="vid_user_designation"
class="col-sm-8 col-form-label text-primary">Designation</label>
<div>
<input class="form-control" type="text" name="user_designation"
id="vid_user_designation" style="border-style: hidden; background-color: white;"
readonly>
</div>
</div>
</div>
<div class="col-md-6">
<div class="mb-3">
<label for="vid_user_mobile"
class="col-sm-8 col-form-label text-primary">Mobile</label>
<div>
<input class="form-control" type="tel" name="user_mobile" id="vid_user_mobile"
style="border-style: hidden; background-color: white;" readonly>
</div>
</div>
</div>
</div>
`
it workds properly When the table is shown as full screen[![enter image description here]the results are ok for instance as per below screen
(https://i.stack.imgur.com/j5me8.png)](https://i.stack.imgur.com/j5me8.png)
When i change the view to responsive style the data is not shown , infact headings of table started shown.
Need guidance to resolve this issue.
I am trying to fetch the data in my modal from table through a java script. When the screen for table is open as per picture it works fine, but when i change the view of table i.e to responsive view, it doesnot show information
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
JavaScript is a multi-paradigm language that supports event-driven, functional, and mandatory (including object-oriented and prototype-based) programming types. Originally JavaScript was only used on the client side. JavaScript is now still used as a server-side programming language. To summarize, we can say that JavaScript is the language of the Internet.
https://www.javascript.com/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.