29,947 questions
-2 votes
0 answers
42 views
Restrict checkbox selection to one or no boxes selected [duplicate]
I have this table <table id="tblPayment" class="payment-tbl"> <thead> <tr> <th class="col-1 ppl-head"></th> ...
0 votes
3 answers
127 views
Javascript, Radios And Checkbox: How to make a "checked" item work upon opening
This code is a demonstration of two features, the checkboxes and the radios. A black-bordered box appears with two ways for you to change its style. Check on the checkbox to change the border to a 5px ...
1 vote
1 answer
57 views
Issue with opaque checkbox under element with absolute position
I just want to ask if I understand something wrong. Here is a Fiddle <table> <th style="position: relative; width: 50px; height: 100px"> <div style="position: ...
0 votes
1 answer
102 views
VBA: optimizing userform checkbox values for filtering
I created a macro that filters and formats an Excel file with a few thousand lines based on a fixed list of 10 errors (all contained in the same column), and it works just fine. I then decided to try ...
1 vote
2 answers
187 views
How can I add an unchecked checkbox to sorted data in Google Sheets?
I have a Google Form that takes entered information and outputs it to a Google Sheet. The responses from this form are then sorted in a separate tab. I want this information to be sorted by most ...
1 vote
1 answer
82 views
Idiomatic Rails way to select records with checkboxes in a big form to choose whether to save or not
I’m building a Rails app related to golf. Users can search for golf courses via an API, and the results are rendered as individual forms per course. Right now, each course must be saved individually, ...
0 votes
1 answer
68 views
VBA: Check/Tick specific dynamic checkbox when Togglebutton is clicked
I have created a UF reading in various tabs (opt) with each tab having between 10 to 19 entries which I display in a Multipage checkbox list. Now I'm trying to create various Togglebuttons which ...
1 vote
2 answers
127 views
ASP.NET gridview AutoGenerateColumns = true using C#
There does not seem to be a lot of info out there when using a gridview with AutoGenerateColumns="true". In my scenario, I am attempting to use this because my gridview is dynamically ...
1 vote
1 answer
65 views
Preserve selection on checkboxes in ASP.NET web application form submit
In my ASP.NET web application I have a form submit with checkboxes. If in the first option 2 or 3 are selected, then a new questionnaire opens with 7 more questions. It's necessary to select all ...
0 votes
1 answer
65 views
Filter with multiple checkboxs and fetching data with ReactJS
I'm trying to implement a filter with checkboxes. I have my data in a JSON file. I'm fetching my data from a JSON It looks like: { "subjects": [ { "año_cuatri": "1°...
0 votes
0 answers
39 views
Invalidate table data when no data found after deletion via checkbox
I have built a checkbox functionality to a table. but stuck to resolve this : right after deletion process, when no data found in table, the checkbox is still can be checked, and the badge still show ...
1 vote
2 answers
90 views
Update price/number based on multiple checked checkboxes
I'm setting up a package page with multiple packages/prices. To get an idea/example, similar to Spotify plans: https://www.spotify.com/nl/premium/#plans The thing is that i want to update the price of ...
2 votes
2 answers
128 views
Using beautiful soup (or maybe some other library) to scrape data from an .aspx webpage containing checkboxes
I was wondering if someone could help me out with a web scraping problem.. I am new to both python and web scraping.. I am trying to use the below python program to scrape data from the following ...
1 vote
0 answers
38 views
Excel web - new style checkboxes - is there an event to do work when they are clicked?
In Excel Web, I have a column containing a new style checkbox in each cell. I would like to add a date to the adjacent column when a checkbox is checked. To do this, I'd like to run a script when any ...
0 votes
1 answer
58 views
In an Excel web script, how can a cell be tested for a checkbox?
I have an Excel sheet, which is filtered with slicers and contains a column with checkboxes. I would like to create a script which reverses the values of the visible checkboxes. I'm new to TypeScript, ...