How to get value from checkbox when i have variable number of records?How to execute a JavaScript function when I have its name as a stringHow can I get query string values in JavaScript?How to get the value from the GET parameters?Get checkbox value in jQueryHow to remove item from array by value?Getting a random value from a JavaScript arrayHow do I bind to list of checkbox values with AngularJS?How to pass variables and data from PHP to JavaScript?When input checkbox is checked, load a value on the nearby input textboxHTML Submit table dependent upon checkbox
What is "oversubscription" in Networking?
How can my story take place on Earth without referring to our existing cities and countries?
Is there reliable evidence that depleted uranium from the 1999 NATO bombing is causing cancer in Serbia?
Adjective for 'made of pus' or 'corrupted by pus' or something of something of pus
What's the rule for a natural 20 on a Perception check?
Why would anyone even use a Portkey?
cannot execute script while its permission is 'x'
Why transcripts instead of degree certificates?
Why do changes to /etc/hosts take effect immediately?
Pairwise Scatter Plots with Histograms and Correlations
How exactly is a normal force exerted, at the molecular level?
Why do we use a cylinder as a Gaussian surface for infinitely long charged wire?
Do launching rockets produce a sonic boom?
Sharing referee/AE report online to point out a grievous error in refereeing
What was the impact of Fischer vs. Spassky 1972 on the relationship between the USA and the Soviet Union?
Was it really unprofessional of me to leave without asking for a raise first?
Donkey as Democratic Party symbolic animal
My colleague is constantly blaming me for his errors
Does the Pi 4 resolve the Ethernet+USB bottleneck issue of past versions?
Pshat of what did Korach take?
How did researchers find articles before the Internet and the computer era?
Should I share with a new service provider a bill from its competitor?
What are good ways to spray paint a QR code on a footpath?
Details of video memory access arbitration in Space Invaders
How to get value from checkbox when i have variable number of records?
How to execute a JavaScript function when I have its name as a stringHow can I get query string values in JavaScript?How to get the value from the GET parameters?Get checkbox value in jQueryHow to remove item from array by value?Getting a random value from a JavaScript arrayHow do I bind to list of checkbox values with AngularJS?How to pass variables and data from PHP to JavaScript?When input checkbox is checked, load a value on the nearby input textboxHTML Submit table dependent upon checkbox
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I need to write values of check checkboxes into div using javascript .innerHTML. I found solutions with a constant number of records, but I have a variable number of records, it can be 5 or 20 records which depends on the situation.
This function will print records until the table is empty. This is where the problem starts. I don't know how many records it will print. I can write 10 times if is checkbox checked print value of checkbox
but there can be like 50 records and that's a lot of unnecessary work. I am open to all suggestions about how to make it work.
Function GetAdditionDB(ByVal iID)
Dim xTemp, i
xTemp = ""
Set rTable = DB.Execute("SELECT Addition, ID FROM Addition WHERE Status='A'")
xTemp = xTemp & "Dodatky <br>"
Do While NOT rTable.EOF
sAddition = rTable("Addition") & ""
i = i + 1
xTemp = xTemp & " <input type=""checkbox"" name=""" & sAddition & """ value=""" & sAddition & """ id="""& i &"""> "
xTemp = xTemp & "" & sAddition & " <br>"
rTable.MoveNext
Loop
Set rTable = Nothing
GetAdditionDB = xTemp
End Function
Solved, here is solution https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_checkbox_order
javascript html vbscript
add a comment |
I need to write values of check checkboxes into div using javascript .innerHTML. I found solutions with a constant number of records, but I have a variable number of records, it can be 5 or 20 records which depends on the situation.
This function will print records until the table is empty. This is where the problem starts. I don't know how many records it will print. I can write 10 times if is checkbox checked print value of checkbox
but there can be like 50 records and that's a lot of unnecessary work. I am open to all suggestions about how to make it work.
Function GetAdditionDB(ByVal iID)
Dim xTemp, i
xTemp = ""
Set rTable = DB.Execute("SELECT Addition, ID FROM Addition WHERE Status='A'")
xTemp = xTemp & "Dodatky <br>"
Do While NOT rTable.EOF
sAddition = rTable("Addition") & ""
i = i + 1
xTemp = xTemp & " <input type=""checkbox"" name=""" & sAddition & """ value=""" & sAddition & """ id="""& i &"""> "
xTemp = xTemp & "" & sAddition & " <br>"
rTable.MoveNext
Loop
Set rTable = Nothing
GetAdditionDB = xTemp
End Function
Solved, here is solution https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_checkbox_order
javascript html vbscript
add a comment |
I need to write values of check checkboxes into div using javascript .innerHTML. I found solutions with a constant number of records, but I have a variable number of records, it can be 5 or 20 records which depends on the situation.
This function will print records until the table is empty. This is where the problem starts. I don't know how many records it will print. I can write 10 times if is checkbox checked print value of checkbox
but there can be like 50 records and that's a lot of unnecessary work. I am open to all suggestions about how to make it work.
Function GetAdditionDB(ByVal iID)
Dim xTemp, i
xTemp = ""
Set rTable = DB.Execute("SELECT Addition, ID FROM Addition WHERE Status='A'")
xTemp = xTemp & "Dodatky <br>"
Do While NOT rTable.EOF
sAddition = rTable("Addition") & ""
i = i + 1
xTemp = xTemp & " <input type=""checkbox"" name=""" & sAddition & """ value=""" & sAddition & """ id="""& i &"""> "
xTemp = xTemp & "" & sAddition & " <br>"
rTable.MoveNext
Loop
Set rTable = Nothing
GetAdditionDB = xTemp
End Function
Solved, here is solution https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_checkbox_order
javascript html vbscript
I need to write values of check checkboxes into div using javascript .innerHTML. I found solutions with a constant number of records, but I have a variable number of records, it can be 5 or 20 records which depends on the situation.
This function will print records until the table is empty. This is where the problem starts. I don't know how many records it will print. I can write 10 times if is checkbox checked print value of checkbox
but there can be like 50 records and that's a lot of unnecessary work. I am open to all suggestions about how to make it work.
Function GetAdditionDB(ByVal iID)
Dim xTemp, i
xTemp = ""
Set rTable = DB.Execute("SELECT Addition, ID FROM Addition WHERE Status='A'")
xTemp = xTemp & "Dodatky <br>"
Do While NOT rTable.EOF
sAddition = rTable("Addition") & ""
i = i + 1
xTemp = xTemp & " <input type=""checkbox"" name=""" & sAddition & """ value=""" & sAddition & """ id="""& i &"""> "
xTemp = xTemp & "" & sAddition & " <br>"
rTable.MoveNext
Loop
Set rTable = Nothing
GetAdditionDB = xTemp
End Function
Solved, here is solution https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_checkbox_order
javascript html vbscript
javascript html vbscript
edited Mar 26 at 9:47
Ondra Pavela
asked Mar 25 at 13:26
Ondra PavelaOndra Pavela
13 bronze badges
13 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55338891%2fhow-to-get-value-from-checkbox-when-i-have-variable-number-of-records%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55338891%2fhow-to-get-value-from-checkbox-when-i-have-variable-number-of-records%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown