Add sum to BC forms

I am trying to add values to my quote form. I do not know how to integrate this into business cataylst. I want it to send it to our CRM and salesman (via email).  Here is the code (this works when its live in a browser): 
<head>
<script type="text/javascript"> src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" </script>
</head>
<form>
<span class="req">*</span><label>Door Type</label>
<select name="price[]" id="sel_1">
    <option value="">Options</option>
    <option value="650.00">Katherine Single $650.00</option>
    <option value="650.00">Katherine Double $650.00</option>
      <option value="650.00">Yvonne $650.00</option>
      <option value="650.00">Margot $650.00</option>
      <option value="650.00">Monique $650.00</option>
      <option value="650.00">Buckingham Single $650.00</option>
      <option value="650.00">Buckingham Double $650.00</option>
      <option value="650.00">Canterbury Single $650.00</option>
      <option value="650.00">Canterbury Double $650.00</option>
      <option value="650.00">Custom/Other $650.00</option>
</select>
<br>
<span class="req">*</span> Frame
<label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="156.00">4-9/16" $156.00</option>
    <option value="225.00">6-9/16" $225.00</option>
    <option value="225.00">Other $225.00</option>
</select>
<br>
<span class="req">*</span> Side Lites
<select name="price[]">
  <option value="">Options</option>
  <option value="">No</option>
    <option value="145.00">1-Sidelite $145.00</option>
    <option value="280.00">2-Sidelites $280.00</option>
</select>
<br>
<span class="req">*</span>  Glass Type
<select name="price[]">
    <option value="">Options</option>
    <option value="145.00">Clear IG $145.00</option>
    <option value="155.00">Clear LO-E $155.00</option>
     <option value="235.00">Hammered $235.00</option>
      <option value="245.00">Glacier $245.00</option>
       <option value="205.00">Winterlake $205.00</option>
        <option value="485.00">Beveled $485.00</option>
         <option value="">Other</option>
</select>
<br>
<span class="req">*</span>Grills
<label></label>
<select name="price[]">
  <option value="">Options</option>
    <option value="60.00">1-LITE $60.00</option>
    <option value="65.00">4-LITE $65.00</option>
    <option value="70.00">6-LITE $70.00</option>
    <option value="75.00">8-LITE $75.00</option>
    <option value="80.00">10-LITE $80.00</option>
    <option value="85.00">12-LITE $85.00</option>
    <option value="210.00">Wood Upper Panel $210.00</option>
</select>
<br>
<span class="req">*</span> Iron
<label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="995.00">Chantel $995.00</option>
    <option value="995.00">Cortez $995.00</option>
    <option value="805.00">Madelaines $805.00</option>
    <option value="805.00">Lyon $805.00</option>
    <option value="805.00">Sienna $805.00</option>
    <option value="995.00">Valencia $995.00</option>
    <option value="">Custom</option>
</select>
<br>
    <span class="req">*</span> Lower Panel
    <label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="30.00">V-Groove $30.00</option>
    <option value="5.00">Raised Panel $5.00</option>
</select>
<br>
    <span class="req">*</span>
    <label>Left or Right Hand Swing</label>
<select name="price[]">
    <option value="">Options</option>
    <option value="">Inswing Left</option>
    <option value="">Inswing Right</option>
        <option value="">Outswing Left</option>
    <option value="">Outswing Right</option>
        <option value="">Inswing Left Active</option>
    <option value="">Inswing Right Active</option>
        <option value="">Outswing Left Active</option>
    <option value="">Outswing Right Active</option>
</select>
<br>
    <span class="req">*</span> Stain Color
    <label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="725.00">Special Walnut</option>
    <option value="725.00">Ebony</option>
    <option value="725.00">Dark Walnut</option>
    <option value="725.00">English Chestnut</option>
</select>
<br>
<span class="req">*</span> Hinge Color
<label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<span class="req">*</span> Pre-hung
<label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<span class="req">*</span> Exterior Casing
<label></label>
<select name="price[]">
    <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<span class="req">* Interior Casing </span>
<select name="price[]">
  <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<span class="req">* Lock Prep </span>
<select name="price[]">
  <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br />
<br />
<br />
QUOTE SUMMARY<br />
<br>
<div class="quotesum">
<!-- SUM -->               
<span id="usertotal"> </span>
<!-- END OF SUM -->
</div>
</form>
<script>
var $total = $('#usertotal');
$('input,select').change(function () {
    var tot = 0;
    $('input:checkbox:checked, select > option:selected').each(function () {
                    var per_op = $(this).attr('value');
                    if (per_op) {
        tot += Number(per_op);
          var final_result = tot.toFixed(2);
    $total.html(final_result)
</script>

http://foyermakeover.businesscatalyst.com/doorbuilder.htm
here is what  is the form  for you guys to see. I just want that to integrate with business catalyst.

Similar Messages

  • Legacy VB6 project. Can no longer add controls to the form.

    Working on a VB6 project that has been in continuous use since 2002.  Needed to make a simple mod and add a new control.  Choosing any control and attempting to drag it on to the form always fails with a black circle with diagonal bar at the cursor
    as soon as the cursor leaves the toolbox.
    Reloaded VB6 and SP6. No luck.
    Tried a new "Hello World" project but was unable to move any controls from toolbox.
    Now the weird part.  Went to 4 other old computers that have always worked in the past.  All of them failed the "Hello World" test as well.
    This is perfectly legal Microsoft Visual Studio Professional load from one of our old MSDN disks.  Are these timebombed or something?
    The program can be edited, compiled and run with no issues, I just can't add controls to any form.

    Hi
    barry6789,
    I am afraid that these forums donot support VB6, you could refer to this thread
    Where to post your VB 6 questions
    and consider posting this issue in these forums below:
    These forums do not support Visual Basic 6, however there are many third-party support sites that do. If you have a VB6-related question please visit these popular forums:
    VB Forums
    VB City
    Thanks for your understanding.
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Once the user has entered the URL they want to add to the form. You can use the loadXML function to implement some special text in a label...
    var linkValue = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><exData contentType=\"text/html\" xmlns=\"http://www.xfa.org/schema/xfa-template/2.8/\"><body xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:xfa=\"http://www.xfa.org/schema/xfa-data/1.0/\" xfa:APIVersion=\"Acroform:2.7.0.0\" xfa:spec=\"2.1\"><p style=\"font-weight:bold;text-decoration:none;letter-spacing:0in\">The new link the user have entered is:<a href=\"" + textfield.rawValue + "\">textfield.rawValue</a></p></body></exData>";
      this.resolveNode("lblURL").value.exData.loadXML(linkValue, 1, 1);

  • How to add Help in a Form?

    I want to add help in my forms application.
    Is it possible to add customized help in a form under Help Menu ?
    Can anybody 'help' me in this regard :)
    It will be a great favour !

    Thanks
    But I don't think winhelp will work for web based application.
    Do I have to use html format help.
    or any other better solution for web based app using form server?
    null

  • Add Business intelligence and forms to existing 9iAS

    How do I add Business intelligence and forms to a existing installation of 9iAS (Portal and wireless).
    Vinodh R.

    i am also facing the same problem with reports . can anybody helpme on this. here is my problem
    Oracle Home : C:\ora9ias1
    Deploying Reports for OC4J
    Reports deployment was successful
    Starting file instantiation
    File instantiation succeeded
    Registering Reports as a database provider
    Queue null
    Number of actions : 1
    Done
    Starting Action : SQLPlus
    Command C:\ora9ias1/bin/sqlplus.exe -s "PORTAL/XXXX@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=mphi4180.mphi.org)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=iasdb.mphi4180.mphi.org)))" @"C:\ora9ias1/portal/admin/plsql/wwd/rwaddpag.sql"
    Process destroyed
    Process err
    Process out
    Action queue failedoracle.ifs.utils.common.ProcessDestroyedException
    Error executing : rwaddpag.sql
    Reports registration failed
    Starting EM integration
    EM integration was successful
    Reports Configuration failed

  • Which dc and sc should add in build time form sld when integration uwl

    hi
    i have to create a webdynpro to show info from uwl, like follow
    IUWLService uwlService=(IUWLService)PortalRuntime.getRuntimeResources().getService(IUWLService.ALIAS_KEY);
    but i don't know which dc and sc i should add in build time form sld and use it.
    i try add UWLJWF from sld, and ?
    i develop with nwce ehp1
    thank you

    1) tc/je/security/api
    2) tc/je/usermanagement/api
    from ENGFACADE.
    3) tc/kmc/bc.uwl/api
    from UWLJWF

  • Add license fonts with Form Server

    How to add license fonts to Form Server?

    Hi,
    I dont know if it is possible with java command but it is possible to add through web application.
    I tried it long back on XI R2 SP2.
    BO provide classes like:
    ILicenseKey
    ILicenseKeyBase
    see if you can take help of these classes.
    setLicenseKey
    void setLicenseKey(java.lang.String newLicenseKey)Sets the license key value for a new license key.
    Parameters:
    newLicenseKey - A String containing a new license key value.
    For more information
    https://www.sdn.sap.com/irj/boc/sdklibrary.
    Thanks,
    Praveen.

  • Multiple 'add row to updateable form' buttons on same page

    Hi,
    I have a master-details page with 1 master region and 2 details regions. Both details regions are updateable reports. In each details region, I created a 'Add row' button, with a different name. Then I created 2 'Add rows to tabular form' processes, one for each button.
    The issue is that both buttons add a row to the same details report. How to specify which button adds a row to which report?
    Thanks,
    Guillaume

    Guillaume,
    The built-in tabular form feature only supports one tabular form on each page. You'll have to put the two forms on separate pages. Or use simple reports as the detail reports with edit links to an edit form page.
    Regards,
    Marc

  • My calculation "Total" box adds sum of all text fields whether they are visible or not, do I change

    I have check boxes that show and hide text fields. (Thanks to Gilads Java script). In options I have a default value for each text field.
    My "Total" Field field adds all fields even if they are not checked and visible. Need to have it only include them if they are checked and visible.

    You can't attach forms by email, or any other means, so it didn't come through.
    Since your fields have default values and aren't calculated based on the state of the corresponding check box, you will have to use a custom calculation script for the Total field that can check to see if any of the fields are hidden, and if so, don't include their values in the sum. For example:
    // Custom calculation script
    (function () {
        // Set up an array of field names to include in the total
        var aFields = ["text1", "text2", "text3", text4"];
        // Initialize variables
        var i, f, sum = 0;
        // Loop through the fields an calculate the sum
        for (i = 0; i < aFields.length; i += 1) {
            // Get the current field
            f = getField(aFields[i]);
            // Add the value of the current field to the sum if the field is visible
            if (f.display == display.visible) {
                sum += +f.value;
        // Set this field value to the sum
        event.value = sum;
    You can send me a PM if you want help offline.

  • Adobe Reader users able to add attachments to a form?

    I am currently developing a form for other users that have Reader.  Is it possible for the Reader users to provide attachments within the form I developed when submitting?  Any help would be greatly appreciated.

    I think it has something to do with the way the value of the check box is exported, but I'm not sure.  With nothing being exported to Data5, Data6 displays the sum of Data1-4 rounded down to the nearest whole number and updates automatically as Data1-4 are updated.
    Right now, assuming Data1-4 are 0, where data 5 is the output of the second example and any box is checked,  "1" is displayed in data5 but nothing is added to data 6. Selecting any other check box or deselecting that check box will cause data6 to add 1 even if data5 displays "0".  By way of example:
    Selecting Check box 16 results in Data5 displays 1 and Data6 displays zero.
    Then, if any or all of Checkbox17-20 are selected, Data5 displays 1 and Data6 displays 1.
    Then, if any or all of Checkbox17-20 are deselected, Data5 Displays 1 and Data6 displays1.
    Then, if Checkbox16 is deselected, Data5 displays 0 and Data6 displays 1.

  • How do I add borders to the form fields in the checkout page of my BC shop?

    I am setting up my Shop for my website www.myartscreative.com. So far, so good. I am testing out going through the steps of ordering a copy of my sketch book, adding the appropriate shipping, etc. However, I notice when testing the checkout page, most of the fields do not have a border around them which makes it hard to see where to  fill in the pertinent info. How do I add a border or fill (or both) the form fields so my customer can easily see where to type in their information?  Here is the link to my shop's "check out page".

    Ok, got it! So, I kind of figured it out by going into the Develop tab in the BC Admin and going into the modulestylesheets.css and modifying that. Check the link above again and you will now see the borders around the input fields. Probably no big deal to you pro's out there, but I am a total newbie up to this point. Thanks again!

  • Add button to PDF Form to save file to specific location

    I have a simple form that is completed daily by various supervisors. I have successfully added a button to the form to email the form which then sends the form to an email group. Now, I'm trying to add a second button to save the form to a network location. I'm looking for this to be a one-click type situation, where the button then saves the form to the specified folder on the network.
    Lets call our form "Form.pdf". I'd like the filename to be "Form - date - time.pdf" where date and time are fields on the form that are completed by the user. The location will always remain the same and will be a UNC path ie \\server\share\filename
    All users are using Acrobat X standard when completing the forms, will be connected to the network and will have permissions to write to the file share.
    This seems like it sohould be easy, but I cant figure out how to do it in Acrobat.
    Thanks in advance for any help.

    It's only possible if you can install a script on the local machine of each
    user. For more info, see this tutorial:
    http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript

  • Add jar file to forms application standard java library

    Overall Problem
    I created a jar file using JDeveloper to be loaded as a bean in forms builder. But the jar file ended up being really large because I had to add some standard libraries that JDeveloper knew about but Forms didn't to this jar file, it takes forever to load in my forms application.
    Background
    Jdeveloper has a drop down list of standard libraries that aren't commonly used that a developer can have included/referenced into their java project.
    Oracle Forms Library
    One of the standard libraries in JDeveloper that can be referenced when compiling a project is the Oracle Forms library. I have to reference this library in my compilation of my java project in JDeveloper because some of the java code in this project requires the Oracle Forms library. When the jar file is created in JDeveloper the Oracle Forms Library isn't actuaally physically located anywhere in the jar file that is produced for deployment. But the jar file runs perfectly in my forms application. Forms builder and the forms application server seems to already know about the Oracle Forms library.
    Java Media Framework Library
    There is another standard library listed in JDevelopers drop down list that I recently chose to use in my Java Application, the Java Media Framework library. But my forms application couldn't find any of the Java Media Framework classes when it launched the jar file that was deployed from JDeveloper. Obviously the classes wern't physically located in the jar file I created, because I figured that the forms application server/forms builder would already know about about this standard library that JDeveloper knew about.
    Not very effective Solution
    So I physically put/included the whole Java Media Framework Library into my jar file and then my form launched fine. But it now takes forever to load. How can I add the Java Media Frame work library jar files as one of the standard libraries that the forms builder and application server already sees (Like the Oracle Forms Library) without having to put the library in the forms/java folder and wait for the this jar file to download to the user's cache?
    Side note: The Java Media Framework Library is allowing the ability to launch video from my form. Very useful tool!!! So it would be good if forms had this already added as a standard library like it is in JDeveloper. But I only see the ability to reference this library in DS 10gR2 for JDeveloper.
    Thanks,
    Michelle

    Yes I have successfully been able to run a javabean application that uses the Java Media Framework methods within a forms module. The video seems to play and interact normally in the forms environment (launched from a DS or the AS).
    Basic Requirements
    Develop the java application functionality look and feel, including adding funtionality calls to the JMF library where needed.
    Develop an Oracle Forms Interface wrapper that will be the initial class called from the bean area, to hande any communication between the bean and the form.
    Configure the deployment of the jar to physically include all the needed classes from the JMF library.
    Sign the jar file and make sure it is placed in the forms/java folder and referenced in the appropriate forms configuration files.
    Depending on the type of video that the will be played certain .dll files might need to be added to the users system folder. Using H264 (.mov) should work fine without any extra .dlls.
    Thanks,
    Michelle
    Message was edited by:
    mpoore

  • What is tthe Best practice for Variant List, Add, Edit and Display Forms?

    Requirement:
    I have single list.  The list has a large number of columns and a large number of items (lets say 20,000).
    I want to show users a different view of the list based on clicking on a different left-hand navigation option.
    Lets say I have four types of users:  Sales, Manufacturing, Shipping and Finance. I would like to have four options in the left-hand navigation.
    All of them would be pointing at the same list, BUT, I want each of them to have a customer list form.  The only difference between the custom list forms would be:
    Each would have its own set of views, and hence its own default view.
    Each would have its own New, Edit and Display Forms.  The only difference between the forms in one variant list and another would be: The order of the columns and which columns are modifiable.
    I would like to achieve this in SharePoint Designer in such a way that the "users" could still add/modify views and could even modify the forms from the SharePoint Menu.  BTW, I don't want to use InfoPath for obvious reasons.
    What is the best approach to meeting this requirement?  I have at least 20 sites and 70 lists overall that need variant forms made.
    HELP!!
    Savin
    BTW We are using SharePoint 2013 and I selected the wrong forum *sigh*.  But I think its probably the same answer.
    Cheers, Savin Smith

    Hi,
    I understand that you want to have different forms based on different view.
    Per my knowledge, there are no out of box method to achieve it.
    As a workaround, you can add the JavaScript code to the different view page.
    For example, to open different new form based on different view, you can get the windows.location, and then judge the view, then change the onclick event of the "New item" button.
    For more information, you can refer to:
    http://css-tricks.com/snippets/javascript/get-url-and-url-parts-in-javascript/
    http://samsharepoint.wordpress.com/2013/05/01/change-the-default-sharepoint-ok-and-cancel-button/
    Thanks,
     Linda
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • How do I add expanding content on form in acrobat adobe 9 pro extended?

    I have a form in acrobat adobe 9 pro extended.  I have 2 questions:  1) Can you make the main content of the form be continual (being it may or may not go into multiple pages) and 2) If the form goes into multiple pages, can signature area only appear on final page?
    The form designer is Adobe LiveCycle Designer.
    Thanks for any help given.
    Message was edited by: Karen Wermager

    On a Mac with Mavericks (or Yosemite) installed on it you don't add them to iTunes, that is only used as a tool for syncing your books to the iBooks app on your iOS devices, iTunes isn't used for managing them.
    For the books that are compatible with iBooks (you probably won't be able to copy the Mobi files into it) then you can add them to the iBooks app on your Mac either via the File > Add To Library menu option within the app, or by dragging and dropping them onto it.
    If you connect your iPad to your Mac's iTunes they should then show on its Books tab for selecting and syncing to the iBooks app on the iPad
    For the mobi book, you will need an app on your iPad that supports more books e.g. the Kindle app.
    For Kindle, and possibly other mobi apps, you can add books to the app by selecting the iPad's Apps tab, scroll down the right-hand side of the screen to the file sharing section, select the app that you want to copy the book to, and add it to the app.

Maybe you are looking for

  • We have 3 iPads and 2 iPhones, how do we sync without losing data?

    If this message appears twice, apologies, as it disappeared just as I was about to submit (so may have gone, or may not...) Hi, Help for apple Luddite, please. I have an ipad2, iPhone 4S, my eldest son has an ipad2 and iPhone 3GS, and my youngest son

  • Can't change the label text for the first time of  loading

    I have some problem to change the label text in the prerender method. I put a label on the form and set the text value to "Customer" on the text properities , and I would like to change the lable text to "Supplier" in the prerender method, I found so

  • Initial Set Status of Kanban board

    Hi all, I want to ask a question. I am using classic kanban processing with Purchase Order replenishment strategy. I am new to kanban. I just want to ask how I can set initial status of kanban container in first time SAP is go live. Like in inventory

  • Synchronizations Settings in NetWeaver Mobile 7.1

    Hi, I have a doubt regarding the setiings in NetWeaver Mobile 7.1. I have developed an application and I want to know how the client communicates with the DOE. I mean how Synchronization happens with the DOE. We know that whenever we Synchrnoize the

  • Error 28007: The Ppptool application is running. Please terminate

    I am trying to uninstall VPN Client 5.0.03.0530 and keep getting Error 28007: The Ppptool application is running. Please terminate all Cisco Systems.... Any suggestions on how to uninstall?