Tablular form - delete and submit

Hello,
I have a tabular form where i can update some fields and i can delete some rows.
I display 50 rows at a time and the user want to mark the rows to be deleted and perhaps make some changes on some other rows.
The problem is that when he click either the submit or the delete button, the canges he has made are gone. So he either has to find the rows ha want to delete again or he has to set the changes he wants again.
My question is how can I do the update before the delete with the submit button, can i just link the delete procedure to the submit button?

You will need to find a way to chain both the update and the delete functionality. Other than creating the entire thing yourself, the only thing I could suggest would be to get the delete functionality included as part of the submit by adding the following as the URL Target of the Submit button's definition:
javascript:confirmDelete(htmldb_delete_message,'MULTI_ROW_DELETE');
As long as this runs ok, it should then continue on with the normal submit.
Andy

Similar Messages

  • Set Form Value and Submit Via Applet

    Hi Friends,
    suppose you have a form such as:
    <form action="submit.jsp" method="post" name = emailForm>
    <input type="text" name="emailField" size = 43>
    </form>And an applet appears on the same JSP page that the form resides.
    This applet is a simple one that takes email addresses and validates them and on clicking on a button labelled submit, the applet is to set the text field of the form to the email address provided and then submit the form. How can I achieve this?
    Thanks and regards.

    Check out http://www.codeproject.com/jscript/javatojs.asp
    You could use something like MainWin.eval("document.emailForm.submit");

  • How do you delete the submit form

    How does one get rid of the submit button when creating a form in Acrobat?  When I create the form, I then click Distribute form and in that process the submit button is attached to the form.  I don't want that button on the form.
    Mahalo,
    Ms Moore

    OK, just don't distribute the form then and the submit button won't be displayed. In saying this I'm assuming you have a copy of the form before you distributed it. If not, you can save a copy (File > Save a Copy) and I think that will take care of it, though you may have to delete some other (somewhat hidden) stuff in the document.
    If the form needs to be filled and saved by Reader users, then you will have to Reader-enable the form. This is done automatically when you distribute a form, but you can do it separately by selecting in Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    If you're using Acrobat 9, you'd select: Advanced > Extend Features in Adobe Reader

  • Java program to automatically fill out and submit a Web form

    I need to write a program to set the fields of a Web form and submit it automatically.
    Can anyone help?
    Thanks in advance!

    heres some code I have been messing about with
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.security.*;
    import java.net.*;
    /** Author :James Charles 20/03/2004
    This module handles the customer booking screen **/
    public class Bookings extends Applet implements ActionListener,   // sets up the initial display screen
    ItemListener
         Choice details;
         TextField name;
         TextField telephone;
         TextField email;
         TextField address;
         TextField postCode;
         Color webPage = new Color(0,128,255);
         Button btnClick;
         String nameOutput =" ",telephoneOutput=" ",emailOutput=" ",addressOutput=" ",postCodeOutput=" ";
         int jobNumber;
         int authorisationCode ;
         Font formEntry = new Font("SanSerif",Font.BOLD,15);
         Font dataDisplay = new Font("SanSerif",Font.PLAIN,16);
         boolean dataEntry = false;
         int position = 2;
         String[] detailsOutput = { "Choose a Subcontractor","Painter & Decorator","Electrician" };
         public void init(){
              readJobNumber(jobNumber);  // reads the las job number from file jobNumber.dat
              Button btnClick = new Button("Submit Details");
              setBackground(webPage);
              add(new Label("                           Name"));
              name = new TextField(30);
              add(name);
              add(new Label("                           Telephone"));
              telephone = new TextField(25);
              add(telephone);
              add(new Label("House No"));
              address = new TextField(3);
              add(address);
              add(new Label("Post Code"));
              postCode = new TextField(8);
              add(postCode);
              add(new Label("E-Mail address"));
              email = new TextField(35);
              add(email);
         public void start(){
              add(new Label("                                                                       Please choice the appropriate Tradesman that you require"));
                        // choice code set up
              details = new Choice() ;
              details.addItemListener(this);
              details.add("Choose a Sub Contractor");
              details.add("Painter & Decorator");
              details.add("Electrician");
              details.select(0);
              add(details);
              btnClick = new Button("Submit Details");
              btnClick.addActionListener(this);
              add(btnClick);
              btnClick.setEnabled(false);
         public void actionPerformed(ActionEvent e) {
              System.out.println("Was in action performed event =" + e);
              dataEntry = true;
              nameOutput = name.getText();
              telephoneOutput = telephone.getText();
              emailOutput = email.getText();
              authorisationCode = (int)(java.lang.Math.random() * 100000);
              if (dataEntry == true){
                   btnClick.setEnabled(false);
                   repaint();
                   System.out.println("In between paint and write");
                   WriteBookings(nameOutput,telephoneOutput,emailOutput);
         public void itemStateChanged(ItemEvent e) {
              position = details.getSelectedIndex();
              System.out.println("Position in itemStateChanged after getSeletedIndex = " + position);
              btnClick.setEnabled(true);
              repaint();
         public void WriteBookings(String nameOutput,String telephoneOutput,String emailOutput)   {               
                       writeJobNumber(jobNumber);
              try{     
                   DataInputStream in = new DataInputStream(new      FileInputStream("CustomerDetails.txt"));
                   char singleChar;          
                   DataOutputStream out = new DataOutputStream(new FileOutputStream("CustomerDetailsNew.txt"));
              /**     try {
                        jobNumber =in.readInt();            // this code reads last job number and increments it
                        singleChar = in.readChar();
                        jobNumber ++;
                        out.writeInt(jobNumber);
                        out.write('\n');
                        while (true){                           // this code
                             singleChar = in.readChar();
                             out.writeChar(singleChar);
                   catch (EOFException e) { }
              out.writeChars(nameOutput);
                    out.writeChar('\t');
              out.writeChars(telephoneOutput);
                    out.writeChar('\t');
              out.writeChars(emailOutput);
              out.writeChar('\t');
              out.writeInt(jobNumber);
              out.writeChar('\t');
              out.writeInt(authorisationCode);
              out.writeChar('\t');
              out.writeChars(detailsOutput[position]);
                    out.writeChar('\n');
              out.close();             
           catch (IOException e){
              System.out.println("Error: " + e);
              System.out.println("Close File"); //*********** End of read/write process, code below renames the new file to the input file
              File fileDelete = new File("CustomerDetails.txt");
              fileDelete.delete();
              try{     
                   DataInputStream in = new DataInputStream(new      FileInputStream("CustomerDetailsNew.txt"));
                   char singleChar;          
                   DataOutputStream out = new DataOutputStream(new FileOutputStream("CustomerDetails.txt"));
                   try {
                        while (true){
                             singleChar = in.readChar();
                             out.writeChar(singleChar);
                   catch (EOFException e) { }
               catch (IOException e){
              System.out.println("Error: " + e);
         public void readJobNumber(int JobNumber) {
                       StringWriter sw = new StringWriter();
                       PrintWriter  pw = new PrintWriter(sw);
              try {
                   //URL ftpUrl = new URL("ftp://j-charles:[email protected]/jobNumber.dat");
                            //InputStream inFile = ftpUrl.openStream();
                   URL ftpUrl = new URL("ftp://jim:evvcece@/jobNumber.dat");
                           InputStream inFile = ftpUrl.openStream();
                   BufferedReader in   =  new BufferedReader (new InputStreamReader (inFile));
                   String line = null;
                   while ((line = in.readLine()) != null) {
                   System.out.println(line);         }
                   in.close();     
                   catch (IOException e) {
                         System.out.println("Reading Job number error " + e);} // catches IO exception
         public void writeJobNumber(int JobNumber) {
              try {
                   URL ftpUrl = new URL("ftp://j-charles:[email protected]/jobNumber.dat");
                           URLConnection conn = ftpUrl.openConnection();
                   conn.setDoOutput(true);
                           OutputStream out = conn.getOutputStream();
                   System.out.println("writing job number" + jobNumber);
                           PrintWriter writer = new PrintWriter(out);
                           System.out.println("Writing to ftp");
                   writer.print(jobNumber);
                   writer.print('\n');
                           writer.close();
                   out.close();
                   catch (IOException e) {
                         System.out.println("Job number error " + e);} // catches IO exception
         public void paint(Graphics g){
              if (dataEntry == true){
                   System.out.println("Calling paint");
                   g.setFont(dataDisplay);
                   g.drawString("Our allocated " +  detailsOutput[position] + " will contact you within 24 hrs", 10,200);
                   g.drawRect(0,260,650,50);
                   g.drawString("Your details are as follows:", 10,280);
                   g.drawString(nameOutput, 10,300);
                   g.drawString(telephoneOutput, 200,300);
                   g.drawString(emailOutput, 400,300);
                   g.drawString( "Job#" + jobNumber, 10,400);
                   g.drawString("Authorisation Code:- " + authorisationCode, 200,400);
                   g.setFont(formEntry);
                   g.drawString("Please keep note of the job number and authorisation code to enable you to use the job tracker screen.",10,450);
              dataEntry = false;
    }

  • Muse and BC web forms deleted

    I created BC web forms to complete my Muse website
    and each time I publish from Muse all my BC webforms are erased? it remains only the web forms created within Muse.
    any idea what I am doing wrong?
    thanks for your help
    rgds
    Olivier

    I had a lot of trouble with this. I got some good assistance from Adobe. Create the form in the BC admin. Place it on a test page. Go to it as a user and fill it out and submit successfully.
    Now, in muse... use the "insert html" feature to place the tag to the form. I also found that it is good to go ahead and place the css file above the form tag for that form.
    So best if you customize it in dreamweaver or some editor, testing it on the "test" page you are using to submit it with an embeded as opposed to attached style sheet.
    So you can place the css and the form tag or the customized code, or a content holder with the customized code and the css in it. But for it to not Get over written; it has to have been placed on a page, and then from the front end as a user, go through it and submit so that the form will "stick". This is especially frustrating if you have not found this out and you have a live client site that is collecting money and every time you make a change for them on the fly; the form gets wiped out and sales stop when it is a seasonal deal and time is of the essence so I really appreciated the personal phone call I got over the Thanksgiving holidays from a person on Adobe technial support. If only it could have been explained so simply ahead of time and not taken all the escalations and wwaiting form answers. This made me look terrible to a client and it made BC look laughable. But, it won't happen again. You can delete the test page later or uncheck enabled in the admin online of BC.
    Depending how long your form is, in Muse, make your site's bottom of page bottom stretchy verticly.
    Also, if you are designing some snazzy form (as in my opinion we should be able to much easier in traditional html5 and css3 for BC)... You'll have to look at the css and convert those values over to the css of the BC form. Let me know if you find a better way but for sure Muse is capable of doing some sweet forms. The best I've ever seen. Just hard to work with form complex, custom forms.
    I at one time thought about designing the style of the form in muse, getting the css and fiuring out a good way to apply that to the custom BC forms I needed to make that were more complicated than "contact".
    I'd love to see a step by step on that "Anyone"...
    I'll up load a movie of a site where I did this that was just for a New Year's Eve Party so the site is down.
    Also enourmous, (I can't thank him enough) props to Randel Guilbro. He's an old friend and stepped in to help me re-build the forms every time they broke before the issue.
    See and example of mixed muse forms with the few forms from e-commerce that were originally getting overwritten here. ----> http://youtu.be/EJKNS_6-LHA
    Cheers,
    Tyson
    Message was edited by: 5iveMEDIA

  • How do I create forms that people can complete in more than one sitting i.e. save and submit?

    Hi,
    I have just bought formscentral and need advice to achieve my objectives:
    Required:
    Customer can part fill form, save and complete later on and submit for us to capture the data.
    Customer can save or can access their completed form, as we need them to print it out, and physically sign a version for us for legal reasons
    Several different people within the customer's business need to fill out different areas of the form, so they may need to e-mail the form bwtween each other or each logon and complete their section.
    Are the above achievable? If so can I do as a web form or pdf? Are there any settings I need to apply to the form before or during creation? Are there only certain methods of distribution that will work?
    Other concerns:
    Our end customers are small traders that are not that computer literate and I worry that they won't have the latest adobe reader or the form won't be compatible with their Mac or firewalls etc and will struggle to be able to fill out, save and submit the forms for technical reasons. Are these concerns justified? If so, are there ways to minimise these issues?
    Any guidance is much appreciated. The package also mentions it includes one to one support from Adobe - how do I access this support?
    Thank you,
    Rob

    If a requirement is that the form be passed around to several users, I think that the PDF option is your only hope. It will indeed be a problem if users don't have Reader or some other forms-capable PDF viewer. You don't have to do anything special apart from enabling it with FormsCentral. This allows users with Reader versions prior to 11 to save the filled-in form. You'll just have to try to educate the users to use Reader (and NOT to use Preview on a Mac).

  • Acrobat 7 Pro - form won't submit via email, and data won't submit either

    Hi. I am trying to create a form for end users at my website to be able to open the form in Reader, enter their data in the form, and click on the "Submit" button to email it back to me (or any other way it can come back would be okay... as long as I can get the data).
    In doing some research on program software needed to do this, I came to the conclusion I needed to have the Adobe suite (Acrobat Pro 7, Distiller 7, and Designer 7), and so I spent a lot of money obtaining this software. I also have just downloaded Reader 9.0 (the most recent).
    Here are some particulars:
    1. Following directions Ive found on Adobe online, and the Help files as well as in this forum, in the form (in Designer), I have the Submit button going to a URL of mailto:[email protected].
    2. I've saved the form as a Static PDF Form File in Designer. Things are going well.
    3. The form works great in PDF Preview all form fields are setup and act correctly. Super!
    4. I FTP my file to the appropriate website, where once the link to the form is clicked the form opens (in Reader) for my users. Perfect!
    5. The user then opens the form, and before they start to fill it out, a popup shows this:
    Sending Data Fields By Email. Please note: This form contains an email submit button. Clicking this button will email a data file containing data you type into this form. However, the form itself will not be sent. Remember, you cannot save a completed copy of this form with Adobe Reader 9
    Then you have the option to Dont show again and a button to Close.
    6. After clicking Close, the user is then able to fill in the fields. These fields are standard fields, nothing exceptional, nothing fancy, just text.
    7. At the end of the form is the Submit button. When a user clicks this, NOTHING happens. Even when you try to do the File/Send thing, the form will send, but none of the data. Im not so happy right now L
    8. In this forum, I now see directions to Reader Enable in Adobe Pro (I do have Adobe Pro). The directions say Advanced/Enable Reader (as in one of the above posts is stated, 'Advanced > Enable Usage Rights in Adobe Reader'). However, I do not have an Enable Usage Rights in Adobe Reader under my Advanced tab. So, continuing to read in other similar posts, I find others dont have this option either so, one question is, where is it??? ;-)
    9. Now I see what appears to be another piece of Adobe software that I need, that is LiveCycle? I think Im getting in over my head, as I dont understand
    I am new to all this, and am doing my best, but now Im totally confused. All I want to do is have my measly little form open up and have people fill it in and email it back to me so that I can take that data and work with it.
    I run (or am trying to run) a non-profit (i.e., Im paying 100% of the bill) website for local Humane Societies who can facilitate offering online Adoption Applications (this is the form Im trying to make happen). I got the form made, and its fillable its just not being able to be submitted online; and when it DID get submitted (first try or so), it came through with no data, and the .xml file data wouldnt populate.
    Bottom line question: Is this, what Im trying to do, feasible or not? Im just a simple soul trying to help out some animals. Im not a programmer, so if thats what it takes I guess Im gonna have to give up and forget it. I only wanted to help make things easer for folks to adopt a pet.
    Any help by anyone would be totally and gratefully appreciated. Thank you.
    keywords: empty form, form not submitting, can't email form, data not transferring, no data in form, can't submit form, can't submit data

    Hi, and thank you for the reply.
    I've already spent several hundred dollars on getting Adobe Acrobat software, and was hoping there was some work-around on this? What did people do before LiveCycle for instance when they needed to get data from submitted forms via email?
    Please don't misunderstand, but as in my example described above, what can a 3rd party do for me (to enable more 'robust rights') that I can't do myself? I'm trying to figure out if I have the software to do it, paid for the software that is "supposed" to do it, why then I need to pay more money to someone else to make the software do what it's supposed to? I sure don't want to have to pay someone to fix it each time I need to make a change in my form for instance...
    I'm confused I guess - I suppose the purpose of my asking on the forum here was to hopefully gain some know-how as how to go about doing this myself vs. paying someone else to do it for me. I want to learn, but just don't know where to start. Or, maybe the software I have just doesn't do what I believed it was capable of doing?
    Guidance and/or suggestions from all on this point would be very appreciated. Thank you.

  • How do I make a button onj the form which will submit and send the pdf as an email?

    how do I make a button on the form which will submit and send the pdf as an email?

    You can set up a button with a "Submit a form" action and use a mailto type URL to specify the email address you want the forms sent do. If you want to send the entire PDF, select that option and not FDF or anything else. The mailto URL should not include any spaces and the "mailto" part should be lowercase, like:
    mailto:[email protected]
    This will attempt to initiate an email using the users default email client. If the user does not have one set up or there is some other problem, the email might not get initiated. If it needs to work with Reader versions prior to 11, then the form needs to be Reader-enabled, which you do in Acrobat 11 by selecting: File > Save As Other > Reader Extended PDF > Enable More Tools

  • PDF flyer with attached Data Form  how do i upload pdf and submit data simultaneously?

    Scenerio user downloads pdf flyer template with attached data form. user customizes flyer and fills out form. user clicks on custom "Submit" button to send form data to php form.
    On submit, how can i upload the pdf flyer to our server AND still send the form data to php form?
    maybe the local file(pdf) address is sent to the php form along with the form data, then i can use php to upload the file automatically.
    any sugguestion???

    Hi Mr AP,
    are you trying to do this in Reader or in Acrobat? If you're using Reader it won't work unless the form is reader-extended by either LC Reader Extensions on the server or by running it through Acrobat manually and extend the capabilities of the form for reader users (careful - the license of the latter is limited to 500 form recipients).
    If you did try it in Reader with a non-extended form the behaviour you'd see is that it just won't work, so that might be your issue.
    Cheers
    Kai

  • Can I make a PDF form and submit to CF?

    Hi.
    I'm wonder that can I make this.
    I'd like to design a form like Purchase Order sample from
    LifeCycle Designer. And want to submit it like a POST method to a
    ColdFusion backend. Think like a HTML form submission.
    Could it be possible? Or I've to have LifeCycle ES for this
    kind of task.
    PDF form generated from CF and submit to CF -> Database
    seems like an attraction to me. No hassle to fix CSS bug.

    Read documentation on CF8 : "Although forms created in
    LiveCycle Designer allow several types of submission, including XDP
    and XML, ColdFusion 8 can extract data from HTTP post and PDF
    submissions only".

  • Form name and email being autofilled. cant delete

    I am using latest firefox 4 /vista ...see below
    when I go to certain sites, the logon name and email that i used previously a loooong time ago on another site appear automatically in the name and email field (of the comment section) .
    I have never visited these sites before let alone posted anything on them, or used the email/logon in any other way. There are no cookies associated with these sites in my cookies.
    I tried turnign off remember search and form history
    I tried delete and shift delete
    everytime I return to those site domains, same thing.
    I am not using any autoform plugin.

    I think some further detective work may be required. Here's one thought. Some sites share comments, reviews, and surveys. If you right-click near the form with the unwanted information in it, is there a "This Frame" on the context menu? If so, follow that to View Frame Information to see the true source domain. You may need to clear cookies for that domain.

  • Master form detail table delete and save all

    I use jdeveloper 10.1.2 with jheadstart 10.1.2 I have a problem about delete and save in master detail.I create 1 master form ,1 detail table and 1 detail form in jheadstart.I want to delete details when I pressed delete button in master and I want to save all changes when I pressed save button.But delete and save are only work for master.So my detail data cant delete or save.What can I do for this problem?Thank alot.......

    To delete the details when you delete the master, it is easiest to define the foreign key in the database with CASCADE option instead ogf RESTRICTED.
    I cannot reproduce your issue with Save not working. Can you reproduce this using the HR schema?
    Steven Davelaar,
    JHeadstart team.

  • Form Distribution and re-submit

    I am new to form design but would like to create a PDF form/checklist for each project that we manage.  At any time, the project manager can access the checklist, update existing fields and re-submit.  Is there a way to do this that the dataset record gets updated WITHOUT creating a new record?
    Hopefully the question makes sense...basically we want to re-submit the form, and have the dataset record updated and NOT add a new record.
    Thanks

    Thanks for the response Paul.  Yes that is exactly what I'm talking about.  I was hoping that by adding to the initial form you could then re-submit and have it update the first response.  This would mean that the initial form is somehow linked to the response (ie. Form #1 updates record #1, form #2 updates record #2 etc.)
    I'm thinking that it might be possible to achieve something similar by looking at the project # (which is a unique field created on each form distributed) and then sorting/filtering by the submit date (to only look at the latest submitted date for that project #)....but that certainly could be more difficult in the programming/collection process.

  • Form for my visitors to fill them out and submit them via email

    Hello, I need to have several forms in my website and allow my visitors to fill them out and submit them via email, can I use FormCentral?
    This is my website:
    http://aiiav.org/cemetary/forms/
    Thank you
    Juan Pulido

    Hi;
    You could certainly use FormsCentral. 
    FormsCentral allows you to easily create forms that you can distribute either using a web form with a "Submit" button that sends the data back to FormsCentral and is available in your account for you to view and analyze, or you can also distribute the form as a PDF.  The PDF can have a FormsCentral "Submit" button that (same as with the web form) sends the data back to FormsCentral, or can be saved without a Submit button allowing you to add your own Submit button using Acrobat which could be an "Email" submit button (which would email you the form data or the entire PDF).
    If you chose "web forms" you could embed the form into your website for users to fill out right there and submit without having to send via email.  You could have links to each embedded form on your site.
    Here is an overview of FormsCentral, I'd be happy to answer any follow up questions: http://forums.adobe.com/docs/DOC-1413
    One note if you were to use PDF - your current PDF forms are set to open in the web browser.  If you used FormsCentral PDF forms you would want to have a link that downloads the PDF to the users computer so they can fill out in Adobe Acrobat or Adobe Reader, filling out in the web browser, or with any other PDF viewer does not work correctly and is not supported.  You would want to call that out on the download page to ensure users fill out in Adobe Reader.
    Thanks,
    Josh

  • Save and submit issues with nested/expanding form

    I've built two forms in designer (Form_B and Form_C, we'll say) which use scripted repeating subforms to accomodate a range of inputs without presenting the user with piles of fields. I need both of them to correctly maintain their state when saved and re-opened, and transmit the data I need through acrobat.com distribution.
    Form B currently doesn't save and re-open correctly:
         There are two levels of repetition, Areas and Categories. There can be one or more Areas, and each Area has one or more Categories. If I open the form (in Acrobat Pro) and fill it out with 2 areas, each area having 2 categories, when i save and re-open the file the second Area is gone, and the first Area has 4 categories.
    Form C has many fields (up to 1500+) but I only need a fraction of them to be submited
         On the assumption that the settings in the "binding" pallet would controll this for me, I made a script to unbind all the unnnessisary fields pre-submit, and reverse the changes post-submit. When I test this, the fields still save and submit despite being set fieldName.bind.match = "none". I would also like to temporarily re-name the submitted fields so they come through with unique names. I have a script to do this, and I tested it by running the script (confirming that they changed by looking at the mouse-over tooltip) and saving the form in that state. The form will open back up with the old(unchanged) names and those fields have lost other layout settings.
    On both forms, all fields and subforms are normally set to binding = "normal", or fieldName.bind.match = "once"
    I currently have no external data bindings (the data view pallet is blank.)
    Any thoughts on why fields whos binding = "none" would still submit/save?
    Or why repeating subforms with binding = "normal" would get lost in a save?
    Is originalFieldName.name = "newName" somehow not sufficient to change how that fieldname gets saved in the data? (despite the apparent name change)
    I've searched all the resources I know for any useful idea on this one, and came up blank. Any help or suggestions would be much appreciated.
    <<<<<   don't rule out "It shouldn't do that, it must be buggy."  I'm starting to lean that way pretty heavily on a couple counts.  >>>>>>
    If anyone would like to see the files in question,  please send me an email at  manager<at>rocklight<dot>net and I'll get a copy of each off to you first thing in the morning.

    I've found a partial answer for the Form_B issue. (areas and categories not saving correctly):
    It looks like another case of this - http://forums.adobe.com/message/1358727#340913
    but for subforms.
    In order to keep my naming consistent, I had every repeating subform at every level called "fields" and within that a subform called "content" etc. (See attached image) It looks like when the file is re-opened, acrobat/reader is finding the First node named "fields" to apply the saved information to, rather than the correct one. When i renamed the subforms to "AreaFields" and "CatFields" it seems to have solved the problem. (It's still giveing me extra categories, but i think more re-naming is going to solve that too.
    Still looking for a solution to the submission problem: how to only submit some of the fields in a form.
    (yeah, the nesting is rediculous, I know, but it was necisary for some formatting elements.)

Maybe you are looking for

  • Can't install Win7 with K8N Neo Platinum (MS-7030)

    Hi, with an XP system running smoothly on my old machine, I decided it's time for a Win7 installation. However, the Win7 installation crashes after first reboot with a BSOD some 20 seconds into the windows boot process (logo displayed). I suspect mis

  • Indesign CS5 - Problems with PDF-Export

    Hello community, we do have a problem with Indesign CS5 and exporting data into PDF. It is about that logo on that white surface, which doesnt come along with the rest after the pdf-export. What we did was: We created that white surface in Indesign i

  • Add checkbox on the nodes of Hierarchical tree in oracle forms 9i

    Hi, I am working on oracle forms 9i.I have to add checkbox at the place of node(+/-) in Hierarchical tree so, that user can select or deselect the Tree.That can do in oracle forms but how i don't know. can anybody help me..... Regards, Hemant

  • No calendar has been set iphone

    Suddenly when I try to save an event on my icloud calendar on my iphone I get error messages 'cannot save event. That event does nto belong to that event store' or or 'No calendar has been set'.  What do I do to save the event?

  • Creative ZEN Mozaic case

    Hello, My ZEN Mozaic front&rear cases were broken by an impact. Where can I buy a new original cases? I don't found it anywhere. Thank you!