Click here to Skip to main content
15,901,853 members

Comments by Reshma Tv (Top 4 by date)

Reshma Tv 19-Jul-20 23:14pm View    
Here I'm using bootstrap 4 toggleable menu as a dropdown box, and calling those via javascript.


$(document).ready(function () {
$('.dropdown-toggle').dropdown();
});


Also included below Css and JS files.

https://code.jquery.com/jquery-3.5.1.min.js
https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js
https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js
https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css
https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css
Reshma Tv 17-Jul-20 8:59am View    
Deleted
Here I'm using bootstrap 4 toggleable menu as a dropdown box, and calling those via javascript.


$(document).ready(function () {
$('.dropdown-toggle').dropdown();
});


Also included below Css and JS files.

https://code.jquery.com/jquery-3.5.1.min.js
https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js
https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js
https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css
https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css
Reshma Tv 17-Jul-20 8:08am View    
Yes.. The data is taking correctly in the source.
Reshma Tv 17-Jul-20 7:18am View    
Yes.. While debugging, i checked and confirmed that correct values are binding to the child repeaters. But in dropdown (When i click on the div in parent repeater) , the first value bound to the child repeaters are showing in all views of parent repeater.

The below javascript code is used to show the dropdown.


$(document).ready(function () {
$('.dropdown-toggle').dropdown();
});