I am having a problem with the last results. I can't seem to be able to
get the input2A and input3A to appear. I don't seem to have a problem
with the show and hide after a number is entered and submitted. If
anyone can answer my problem I will be greatly appreciated with a
prize. I actually have submitted it more than once and I haven't had
anyone been able to answer it yet. Code:
I have a form that allows for dynamic field creation. Basically, you click the + button, and an addition row of fields (2 text fields) are created. The area that is dynamically created is wrapped by a <div id>, within which is, and this might be bad practice so please feel free to mock me , another few nested div id's. It looks something like this:
Code:
Each time you hit the +, it creates a new div id beneath the "Adds" id.
What I'd like to do is see the values of the id's "row_fqdn" and "row_ip". Is there a quick way to access the values of nested id's?
I found a workaround but it seems pretty messy and drawn out, something like this:
INTRO: I tried to clean it up for easy reading. I hope I didn't make any mistakes.
PROBLEM: WOW, this is some crazy sh!t. I can't get my checkbox (see "TAGSELECTED") to print my textboxes (see "TAG#") when more than 1 number (see "VLANS") is inputed into my form.
QUESTION: How do I make my dynamic form have a dynamic input box(which is created by checking the checkbox and calling the functionC1) inside it and still be able to pass the values to my php page? Code:
I have a form which contains a number of check boxes in format of fielduse_x where x is incremented each time (1 - 30)
Everytime one of the checkboxes is ticked or unticked i want to perform a function for related boxes but i am having difficaulty doing this.
The code i have in the javascript is :
function changeStatus(f) { alert(f); if(document.newForm.fielduse_[f].checked==true) alert("YES") else alert("NO"); }
f is passed from the form field and contains the number (1 - 30). I know that the form is passing the values across as alert(f) gives the correct number. I don't seem to be able to get the next line to work. How do i put the value of f into the if statment as what i have done isn't working
pageone.htm has an iframe with pagetwo.htm inside pagetwo has a form with a hidden field that has a dynamic value.I'm trying to get that value from pageone.htm using:var myid = window.frames['myiframe'].document.forms['myform'].elements['page'].value; This is working, but I just get the value that the field had when I did:
setInterval('alert(GetValue())', 9000);
for the first time. All the alerts after the first one have the same value even when myid is changing in pagetwo.htm (tested alerting it in there).I thought that by using setInterval I would be checking for a fresh value every 9 seconds but what I get is the same old value every 9 seconds
///// pageone.htm ///// <script type="text/javascript"> function GetValue() {[code]......
I have made a script where you can add extra fields, and next to the row is a span that automatically displays the outcome from a calculation of three fields in that row. i.e. Q x (B - A) = total. Here is the bit that does the calculation:
function advCalc(selected) { var result = Number(document.formmain.elements["quantity"+selected].value) * (Number(document.formmain.elements["provideamount"+selected].value) - Number(document.formmain.elements["supplyamount"+selected].value)) ; [Code]....
this is dynamic rows code.when i click remove(-) any row i need to get respective checkbox id; for example when i delete row3 i need to get checkbox id as houseCheck3;when i delete row2 i need to get checkbox id as houseCheck2; once i get the id of that checkbox its easy for me to get the value;
I am trying to make several fields in a HTML form validated, but only when a dynamic checkbox is selected. I am not sure how to do this.
Here is a snippet of the dynamic checkbox code: <% Set RSLIST = Server.CreateObject("ADODB.Recordset") SQLLIST = "SELECT * FROM Newsletters ORDER BY Newsletter_Name" RSLIST.Open SQLLIST, Conn, 1, 3 %> <%Do While Not RSLIST.EOF%> <input type="checkbox" name="Newsletters" value="<%=RSLIST("ID")%>"><%=RSLIST("Newsletter_Name")%>
I would like to make three fields (company, phone_work, license) mandatory when one of the "ID" (i.e. ID 2) is checked.
I have created a dynamic table to display data. I also added a checkbox field with a class name. I want to create a click event for when a user clicks on the checkbox. I can not get my selector to work.
Here is my code
function DynamicTable(data) { var table = $("#grid"); table.html("");
I have a textbox that is dynamically added and a checkbox that is dynamically added to a page. The textbox is populated on the PageLoad event and I want to be able to check the checkbox and have the textbox cleared.Here is my javascript:
<script type="text/javascript" language="javascript"> function clearName() {[code].........
It gives me an error saying that 'tbCustName' is null
this is dynamic rows code.when i click remove(-) any row i need to get respective checkbox id;or example when i delete row3 i need to get checkbox id as houseCheck3;when i delete row2 i need to get checkbox id as houseCheck2;once i get the id of that checkbox its easy for me to get the value;
I have an HTML table with <tr> sections that is generated by php which looks like the following HTML Code: <tr align='center' class='row_a'> <td align='center'><input id = 'assign0' type='checkbox' name='agent_8949' value='0' /></td></tr> <tr align='center' class='row_b'> <td align='center'><input id = 'assign1' type='checkbox' name='agent_8950' value='1' /></td></tr> <tr align='center' class='row_a'> <td align='center'><input id = 'assign2' type='checkbox' name='agent_8951' value='2' /></td></tr> <tr align='center' class='row_b'> <td align='center'><input id = 'assign3' type='checkbox' name='agent_8952' value='3' /></td></tr>
The id's and values are generated by php, my problem is, I want to use javascript to check if anyone of the check boxes has been checked on submission meaning that I have to go through the <tr> list. Here is my JS code which only works for one id. Code: //I know the length of the checkbox (checkBoxID) fields which is the number of rows in the database table function validate(checkBoxID){ var ids_Prefix = 'assign';//we know all the ids starts with this string for (var i = 0; i < checkBoxID; ++i) { if(document.getElementById(id_Prefix+i).checked == false){//how do I check the next one? alert("You did not make any selection"); return false; }}}
I have a php script that lists some items which can be checked or unchecked. Now, I am trying to make a javascript that writes a comment field in a certain "span" - comm_'.$i.', where $i starts from 0 - if the check box is already checked (info retrieved from the database) or if the user checks the check box (when the user unchecks the check box the comment field should disappear). The problem is that I am unable to make it work properly (when I check or uncheck a box it doesn't work at all), I mean it only works for the element above, so if box_1 is checked it can only create the comment field in comm_0.
The error I get is - this is similar to the errors I get when checking and unchecking a check box: Message: 'null' is null or not an object Line: 64 (this would be line comSpc.innerHTML = 'something1';) Char: 4 Code: 0
how to populate a dropdown based on Another dropdown selection. This all should be a dynamic. Eg: I have two text boxes one is TechID and other is JOB ID. When I start typing Tech ID it suggests me the list of IDs which start with the input string i have put in Tech textbox. When i select the Tech ID the jobs associated to that Tech ID should be displayed in JOB ID text box as a dropdown list.
I'm developping an ASP.net web page using JQuery Accordeon . the text inside the Accordeon changes so I'd like to create dynamic divisons that support those changes.
I'd like to know if its possible to shift a select option field into a simple text field based on a check box filled by user.
I have an asp form that carries a few select options. One of them I'd like to permit free editing if the user selects a check box just biside the select option, so enableing free editing by user.
i was trying for some days now to find a solution for this. had a look at different posts and forums online, but no luck so far...is it possible to auto-create this with a loop???:
I've been beating my head against a wall for a few days trying to get this working. I'm trying to create a dynamic menu where a user selects one item and another select list is shown, then another and another (and so on). Here is my JS, it *should* be taking the ID of the div, comparing it to the selected value and then showing another div by settings it's class property to visible:
I'm working on a script that will produce multiple dynamic forms based on the results of an ajax request. The ajax request does a db query that will return 0 to x number of rows. For each row, a new serialized form is created. Since the forms do not exist at page load, I'm having problems getting the value of the form elements so that I can run other functions on them (update inputs and selects). I've stripped down everything so that I can show a basic example. In the example, how would I get the value of "#orderID"? The body contains a div (previousList) that has a list of items that when clicked will trigger the ajax query. It also has a div (line details) that will hold all of the forms that are generated.
<div id="lineDetails"> check it out </div> <div id="previousFrm" class="ui-widget-header ui-state-highlight ui-corner-all"> <h3>Previous Returns/Cancels</h3> <div id="previousList"> <ul class="previous" id="returnList"> <li id="1000997" class="names">1000997: 101853</li> <li id="1000995" class="names">1000995: 101853</li> ..... But callingconsole.log("order line value is " + $("#orderID").val()); results in 'undefined'.
I will like to know if there is anyway to view all the rules that I have currently in the Jquery validation plugin. Currently, I am trying to add in rules dynamically through the rules(add) function after adding some dynamic fields through the user inputs. the rules are added in this manner.
The links (ie "/pgs/genuestion.htm") do send to the correct page. However, I would like the form to 'dynamically' appear under the list menu based upon which selection is made instead of directing to a new page. --- Each contact form would contain the same info ie. name, comment textarea etc., but the three different types (gen, order, tech) would be sent to separate emails ie gen@domain.com, order@domain.com... respectively.
function AddBlock() { I have a dynamic form that allows the user to click an 'add' button to add extra groups of input fields. These fields are name, phone, and type.
Let's say that a user enters one Point of Contact, then wants to enter another by clicking the 'add' button. I want to save the previously entered data into an array structure. I'm having trouble with the below snippet of code:
// Save previously entered data here var formObj = document.dynoPoc; for (i=0,j=0; i<loops; i++) { data[j] = formObj.POC_name[i].value; j++; data[j] = formObj.POC_phone1[i].value; j++; data[j] = formObj.POC_type[i].value; j++; }
What I expect to happen for the very first line of the loop is that the line 'data[j] = formObj.POC_name[i].value;' gets evaluated to 'data0 = formObj.POC_name0.value;'. What seems to be happening is 'data0 = formObj.POC_name.value;'.
This causes an error because there is no input field named 'POC_name'... they're called 'POC_name0, POC_name1, ...POC_name[n] depending on the number of times you click the 'add' button.
I wanto make a custom slideshow generator, and that users can add their image links. Now the problem is i don't wan't to limit my users to let's say 5 iage links, i would like to make somthing that will alow them to add as much input fields as they won't and then when they submit that they get the proper slideshow code with as those fields. so if anybody now's how to do this i would me more thank thankfull.
Code: formedit.field.value with this piece of code, i can access a value of a field inside a form. problem is, when i loop, i do this in naming my forms
formedit_1 formedit_2 etc..
on my link, i do this
<a href="jsscript(id)">
but i cant access the proper value. what i would like is that if i pass id=2, then the value from formedit-2 will be taken, if i pass id=1, then the value from formedit_1 will be taken. but i cant make it.. i tried this
var test = 'formedit_' + id; alert(test.field.value);