All Questions
125 questions
0
votes
1
answer
466
views
Checkbox check/uncheck not working properly with angularjs
I am working on a project where I am using a partial view in ASP.NET MVC and in that partial view there is a html table and in the table header there is a checkbox on click of that checkbox all the ...
0
votes
1
answer
225
views
check uncheck checkbox using angularjs using attribute
I want to add checked and unchecked attribute to the checkbox which is in a table I tried to using it via jquery in angularjs
$('#chksitecolumn_' + item.Id).attr('checked', true)
Here item.Id is ...
1
vote
2
answers
2k
views
Add a checkbox in each row for datatable jQuery using Angular.js
I want to display some data in a datatable format by using Angular.js.
So I did something like below.
Angular
<script src="~/Scripts/jquery.js"></script>
<script src="~/Scripts/...
0
votes
2
answers
1k
views
After reload the page checkbox should not reset
I am using Angular-Js and Jquery. I am implementing disable all checkboxes in the page after click on checkbox. But When I reload the page my page is reset, I don't want to reset disable checkboxes ...
-2
votes
2
answers
553
views
jQuery - Dynamically show and hide button on checkbox checked/ unchecked, and vise versa [closed]
Attempt: I am trying to map a check-box checked & unchecked to a button show/hide. Also, to toggle check/uncheck the check-box when I click the mapped button.
Problem: When I click one of the ...
0
votes
0
answers
53
views
How to refresh radio button in list user (table)
When I click the radio button, the popup display detail user A correct, but when I click in radio of line 2 (userB), the popup display details of user A (also details userA and no detail for userB). ...
0
votes
1
answer
63
views
How to make a function call with ng-checked : Angularjs
I need to display data when i checked on a checkbox(for example when i clicked on multiple checkbox i should get the data regarding all checkbox value)for this i have tried ng-checked and call the ...
0
votes
1
answer
1k
views
How to set checked property of checkboxes based on value from database using angular js
I have a group of checkboxes which are populated dynamically from database using AngularJs. Now, on edit I want to check the checkboxes whose value is stored in database. Below is the sample code:
&...
1
vote
1
answer
166
views
Allow one checkbox in AngularJS
I'm using AngularJS and filter option, like this:
// Functions - Definitions
function filterByCategory(box) {
return (this.filter[box.cat1] || this.filter[box.videoYear] || noFilter(this....
0
votes
1
answer
527
views
how to get all data using select all checkbox in table?
Hi I am trying to get all data at a time when I will click on
checkbox, but data not coming but when i click one by one data id
coming. But my problem is how to get all data in checkbox all in
single ...
0
votes
1
answer
846
views
Make checked or unchecked from jquery in Angular js?
If checkbox is checked then after reloading checkbox should be checked , If unchecked then should be unchecked.
Using in directive controller.
var checkboxValues = JSON.parse(localStorage.getItem(...
0
votes
0
answers
333
views
Select/deselect checkboxes from all pages using Angular
I am new in Angular and want to select or deselect all checkboxes from all pages. I have a master checkbox but it select and deselect only the current displayed page. I want to add a link(an option) ...
0
votes
3
answers
3k
views
How can we get the previous state of the checkbox?
I have a checkbox in my Application like below
<input type="checkbox" ng-model="vm.somevalue" indeterminate " />
indeterminate is a directive which will change the state of the checkbox when ...
0
votes
1
answer
68
views
How to avoid checkbox being selected when clicking on table row
I have a table with one of the columns a checkbox that I need to activate or not depending on a certain logic.
My problem is even when the checkbox is deactivated, when I click away from the checkbox,...
1
vote
1
answer
70
views
how should i deselect the chekbox that is already selected in html page using angularjs?
I have checkboxes in my html as follows,
<div ng-repeat="fruit in fruits">
<input type="checkbox" name="{{fruit.name}} ng-model="fruit.value"
ng-checked="isChecked(fruit)" ng-...