Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - niketnaik

Pages: [1]
1
Worked

2
Help for ParamQuery Pro / Get id of selected checkboxes outside of the grid
« on: November 21, 2022, 10:56:49 am »
I want to access selected checkboxes from outside of the grid. Check the attachment. I tried using below code
 
 
Code: [Select]
var array = []
            var checkboxes = document.querySelectorAll('input[type=checkbox]:checked');
            for (var i = 0; i < checkboxes.length; i++) {
                array.push(checkboxes[i].value);
            }

But this code skips the values of checkboxes which are on next page or in the scroll down area. I want to access all the checkboxes.

3
Excellent. Working perfectly. Thank you. :)

4
Thank you for replying. I tried with the solution you provided but it doesn't seem to be working for me. If i apply only one filterRules at single time then it is working perfectly but not with both. Can you please share complete jsfiddle so that i can figureout what i am doing wrong to achieve the desired out put?

5
Hello, I want to filter the data from single header but criteria should be from multiple columns. What i want to achieve is (see sample attaced) I want to have filter on first name field, so when ever user will search by providing the value ( George ) then it will display single result but if user search for (Alcock) then it will display 3 results (1 from first name, 2 from last name). How can i achieve that ??

Pages: [1]