All Questions
1,286 questions
0
votes
0
answers
31
views
Window.print() Page break not working for merge row
I'm stuck with this problem. I used many solution but still not solved. I have a form with table data, but the table has row merge with many "<td></td>".
I want to page break <...
0
votes
0
answers
23
views
angularjs element manipulation
I am confused about angularjs manipulation.
How come:
angular.element("#elementID").is(':visible') ; // works
angular.element("#elementID").slideUp() ; // works
...
-1
votes
1
answer
36
views
how to link two fields with a connecting line when the two fields clicked.... in angularJs
i have 10 fields in the upper side , and have 10 fields in the bottom side , i need to two fields were connect with a line when i clicked two fields (one upper field and one bottom field) , in need to ...
0
votes
0
answers
60
views
JS/AngualarJS/Jquery/CSS Minimize Maximize Window
I am trying to understand how to make my current 'modal' code allow for a minimize and maximize button where the modal would minimize to the bottom of the screen when clicking the - button and in the ...
0
votes
1
answer
711
views
How do I hide an element rendered via fetch API
I'm trying to resolve a coding task. I have to pull the data from the https://jsonplaceholder.typicode.com/users using fetch API function, bootstrap and jquery. I used the array.map() to print the ...
0
votes
0
answers
78
views
Track the Number of Print command given
I want to keep the track of how many times the print command is given in my AngularJS project.
here is my code for printing a div -
vm.printWholeJob = function () {
vm.printCount++; // It ...
0
votes
1
answer
966
views
How to set the dropdown scrollbar at top whenever the dropdown is opened
I have a custom made drag and drop multi select dropdown. Its has only the unique control id for dropdown. First time when we open the dropdown the scroll is at the top. Next when we go down and close ...
0
votes
0
answers
31
views
cannot create a tab in angular js
profiletemplate.html
<div class="content-box" ng-controller="profileController" ng-init="selectedTab = 1">
<a href="#!chatlist" style="color: ...
1
vote
0
answers
55
views
AngularJS - get relative coordinates to the container object, within SVG on mouse click WITH HOVER STYLE
I want to get the relative mouse coordinates to the blue div on mouse click, but ALSO apply the hover style.
The problem is: If I use the "pointer-events=visible" property setting, the ...
0
votes
0
answers
30
views
$(element).find("#custom-table") not returning anything in angularjs
I'm trying to add a scroll event to the tbody of the table, But when I try to find the tbody of the table using the $(element).find("#custom-table"); it returns nothing.
This is the ...
0
votes
1
answer
46
views
I'm Unable to get html to display everything in this github zip
I'm just trying to open the index.html and it does not display the navigation or images that should be on the page. https://github.com/LawlietBlack/Persona-4-Golden-Guide
If this question needs to be ...
1
vote
1
answer
552
views
How to make already selected option not display in another select option dropdown JAVASCRIPT/ANGULARJs
How to make a select option not disappear when selected if filtered out and not be displayed on other select dropdowns.
For example
if i have some array of objects, and i make
<select ng-options ...
0
votes
1
answer
124
views
Sudoku in AnuglarJS
So, I have a sudoku generator, when accessing through API, it generates a Sudoku board (JSON array) which then with AngularJS and ng-repeat in a tabled I am displaying the Sudoku board on the page.
...
-1
votes
1
answer
175
views
Angularjs code for the dynamic update of the table based on the selection of option in the dropdown
I am new to Angularjs. I have a table and a button(Update) in UI. I have a drop down option in the 3rd column of the table.. Now, based on the option I select in the drop down and then i click on the "...
0
votes
0
answers
358
views
Headers is resizing not columns with colResizable jQuery plugin
I am using the colResizable jQuery plugin and this directive to resize table columns
.directive('colResizeable', function () {
return {
restrict: 'A',
link: function (scope, elem)...