Jump to content

sholladay

Members
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

sholladay's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hello, any advise on how to structure the script on this? Working in formsite.com. Using Custom Script options. I pipe in data from other areas of the form with a 'formula' of sorts (sorry my only real experience is excel, and I don't know this lingo). Once that information is sent over, I want it to stay that information, not change as the formula does. Example: I have one field that tells me the time/date of NOW. Once that is filled in, I want the time to send to another field and stay put. I can 'pipe' it in, but if the form is accessed again, that time then changes to the current NOW...instead of the old now.
  2. Great idea, sorry, when I figured it out, it seemed so simple that I felt silly for posting to begin with. The moral of the story is: I have a workflow that I wanted a Save Progress button to be in the middle of the page, so the user didn't have to scroll to the bottom to save. I just took the page source info, and copied the code for the bottom of the page save button and then put it up into my form. Worked like a charm.
  3. I FIGURED THIS ONE OUT ON MY OWN! AND NOW I CAN'T FIGURE OUT HOW TO DELETE IT.... LOL
  4. I realize this is rookie stuff, I don't have enough experience to string this together from them info on this site regarding this to make it work. Can someone help me? This shows current time, but if there's a 0 it drops it. So, for 3:03, it does 3:3. I want it to show current date and time (not skipping 0's) - military time. Can anyone help? jQuery(document).ready(function() { var now = new Date(); jQuery("#RESULT_TextField-4").val(now.getHours()+":"+now.getMinutes());
  5. Oh my, yes, I can see how you would need to know more information. But your questions are a bit over my head. I will try to answer.I placed the code in the 'custom code' section of Formsite.com (it allows me to make personalized forms). I don't have any idea what your second question means. I do not have the noconflict set up, I can set that up in the code I have above, can you give me an example? I have other coding set up without using that. Some are working, just not this one.Does this help at all?
  6. It's a site that has features to build forms to process data from customers and employees (this is how I use it). The problem is that they have limitations. I can get around those limitations if I write the script and put it in the little box they have called "custom code". I just don't know what I'm doing with Javascript, and the tech support there is helpful to a point, but when I veer from their standard offerings...I get directed back into the square box. I can imbed the forms onto my site, or I can use links and redirects. I haven't gotten to the personalization of the links yet, I'm still trying to create the forms that work for my needs at this point. Each form allows the builder to set up users for that form with a username and password...which I did. But then when I try to recognize the user after log in and call them by name (or route them to an individualized landing page based on who they are), they tell me that can't be done. That I can't use the user name at all... but I see it on my site code. I figure that I CAN use it if I find a code that works.
  7. I changed it. Still nothing. Now it is the following, and still blank when I view it. <script> jQuery("#RESULT_TextField-4").change(function(){ jQuery("#RESULT_TextField-14").val(jQuery("#RESULT_TextField-4").val());});</script>
  8. This does nothing. I want it to duplicate the data from one field and show it in another. <script> jQuery("#RESULT_TextField-3").change(function(){ jQuery("#RESULT_TextField-13").val(jQuery("#RESULT_TextField-3").text());});</script>
  9. Formsite doesn't allow me to utilize the 'logged in name' for my users to personalize the experience for them. The user can see it once they are logged in, but it won't pipe into any other aspect of my form, except the reports. I see the name in the coding of the webpage, does anyone know if there's any custom code that I can put into my form that will pull that into a text box? (see attached). I've been doing this with other data, for instance, I'm using this successfully: <script> jQuery("#RESULT_RadioButton-5").change(function(){jQuery("#RESULT_TextField-8").val(jQuery("#RESULT_RadioButton-5 :selected").text()+"@");});</script> Thanks in advance!
×
×
  • Create New...