SharePoint 2013 Parent/Child Form

All,
I am completing some audits on accounts with audit names: AuditA, AuditB
I have a SharePoint list 'AuditPopulation' with the following columns:
AccountNumber
AuditName
Then as we are auditing accounts we have audit questions based on the applicable audit. Therefore I have a list called 'AuditQuestions' with the columns:
QuestionID
Question
Answer (Pass/Fail)
AuditName
I am struggling with how to link to the two lists and create a form (most likely in InfoPath) that will display the list of Questions for AuditA when the user clicks the AccountNumber in the 'AuditPopulation' list.
Thank you in advance

You can use jQuery and Web Service to achieve this task using SharePoint Designer. Refer to the following post for more information
http://sharepoint.stackexchange.com/questions/6493/how-to-automatically-link-parent-in-child-list-new-form
http://go.limeleap.com/community/bid/246651/Creating-Forms-for-SharePoint-Using-SharePoint-Designer-2010
http://www.sharepointdrive.com/blog/how-to-establish-a-parent-child-relationship-in-sharepoint/
--Cheers

Similar Messages

  • Populate list from recordset on Parent/Child form

    We have a parent/child form and want to populate several lists from recordsets. We can populate the child canvas by calling a procedure from the WHEN NEW FORM INSTANCE trigger but the same code fails when trying to populate a list on the Parent canvas. If I move the code to a PRE-BLOCK trigger on the parent block, then it works. I just kept moving the code until I found something that works. Can anyone tell me why it wouldn't work from the WHEN NEW FORM INSTANCE trigger? Is PRE-BLOCK the correct place?

    WHEN-NEW-FORM-INSTANCE trigger
    Add_Orgs_Lists('HR_PERSONS.OFFICE_SYMBOL');
    PROGRAM UNIT
    PROCEDURE Add_Orgs_Lists (list_name VARCHAR2) is list_id ITEM;
         col_name VARCHAR2(80) := SUBSTR(list_name, INSTR(list_name, '.')+1);
         sql_stat VARCHAR2(2000);
         BEGIN
         --Find ID for list item.
              list_id := FIND_ITEM(list_name);
              IF ID_NULL(list_ID) THEN
                   MESSAGE('List Item ' ||list_name|| ' does not exist.');
                   RAISE FORM_TRIGGER_FAILURE;
              END IF;
         --Build the SQL statement.
         --     message('In Get_Org');
         sql_stat := 'SELECT Distinct Org_Name, Org_Name FROM HR_Organizations
         ORDER BY 1 ASC';
         Populate_the_List(list_id, sql_stat);
              EXCEPTION
                   WHEN OTHERS THEN
                        MESSAGE('Internal error occurred in Add_Orgs_List.');
                        RAISE FORM_TRIGGER_FAILURE;
    END Add_Orgs_Lists;
    PROCEDURE Populate_the_List (list_id ITEM,
                                                           sql_stat VARCHAR2) is
         group_id RecordGroup;
         outcome NUMBER;
         --List_Elements  VARCHAR2(40);
    BEGIN
              --message('In Populate_the...');     
    --Create temporary record group.
    group_id := CREATE_GROUP_FROM_QUERY('List_Elements', sql_stat);
    IF ID_NULL(group_id) THEN
         MESSAGE('Record Group could not be created in Populate_the_List.');
         RAISE FORM_TRIGGER_FAILURE;
    END IF;
    --Populate record group.
         outcome := POPULATE_GROUP(group_id);
         IF outcome <> 0 THEN
              MESSAGE('Record Group could not be populated in Populate_the_List.');
              RAISE FORM_TRIGGER_FAILURE;
         END IF;
    --Populate list item
         POPULATE_LIST(list_id, group_id);
    --Destroy the temporary record group to release resources
         DELETE_GROUP(group_id);
    EXCEPTION
         WHEN OTHERS THEN
         MESSAGE('Internal error occured in Popluate_the_List.');
         RAISE FORM_TRIGGER_FAILURE;
    END Populate_the_List;
    The error is FRM-41337 Cannot populate the list from record group. It happens when we open the form. We are using the same code to populate the lists on the child form (except the SQL statement is different) and it works correctly.
    I appreciate your help.

  • How to have digital signature in a Sharepoint 2013 custom list form created in InfoPath 2013?

    I have a requirement that they want a form in SP13 that would allow Mobile mode.  Supervisor then can sign off the form in mobile mode.  Because Document Library form doesn't have Mobile client support so I decided to create this as a custom List
    form.  Now I'm finding out that when I right click on the section on the form to enable e-signature, there is no such option.   I appreciate it if someone can give me some suggestion on how to have a form that has both Mobile mode and e-signature
    support in SP13.
    I also noticed that the people picker doesn't work in Mobile mode.  Is that so or is there something-else I need to configure?
    Thank you.

    Hi,
    According to your description, my understanding is that you want to create an InfoPath form which supports Mobile mode and e-signature in SharePoint 2013.
    Per my knowledge, the browser-based forms cannot support signature in Mobile device.
    Here are some other products which are not free can achieve this goal for you to take a look:
    http://forums.qdabra.com/2013/06/signing-infopath-forms-part-1-electronic-signatures/
    http://www.formotus.com/16563/infopath-alternatives/infopath-forms-filling-weigh-the-options
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Parent Child Form

    How can i show the form in parent child style
    B1 SDK?? It just like the form handling in .NET

    Parent/Child (Aka Modal forms) forms can't be done in SDK at the moment... Modal forms have been promised for some time now and latest is promised in the SBO2006A..
    If you need to do it, the best way is to save a parent forms uid in the child form (in a userdatasource). That way you will always have control of the parent form and if it is closed, you can give a good error message.

  • Sharepoint 2013 pass custom form data

    I am asking the question since this is my first project working with Sharepoint 2013.
    Here is the project requirements:
    1. I created a custom list for users to enter data in a custom form that is modified by Infopath 2013.
    2. Once the user clicks the 'save' button on the custom form, the workflow is started and the workflow will be waiting for certain users to accept or reject the form.
    3. If the form is rejected the user needs to make modifications and the form can be  resubmited.
    4. Once the custom form is accepted, the user will be required to submit bimonthly updates on the progress of the request they made based upon the start and end dates submitted on the original form.
    5. After the custom form as been accepted, a master/detail will be setup with the master being the accepted form and the bimonthly updates will be details.
    Here are my question:
     I want to pass the information from the accepted form to the master/detail form that will do the following 'Once the custom form is accepted, the user will be required to submit bimonthly updates on the progress of the request they made based upon the
    start and end dates submitted on the original form'. Would you tell me how to pass the information from the accepted custom form to being the 'master' part of the master/detail form I just mentioned?
    Is this a good solution? If you how would you change the design and how would you make these coding changes and what would the design change be?

    Hi Scampsman,
    Based on your description, my understanding is that you want to pass data from one InfoPath form to another InfoPath form in SharePoint.
    To achieve this goal, we can write code in the details form with FormEvents_Loading to capture and display the incoming parameters passed from the original form.
    Please refer to the link below for more detail steps(same for InfoPath 2013):
    http://sharepointbeeeye.com/infopath-2010-passing-data-between-forms/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Customize Sharepoint 2013 Blog Post forms and layout

    I have a blog site that will be home to customer call reports saved as posts to the blog. The blog works, but how do I get all the custom columns to show on the blog home page that shows all of the posts. Currently, only the Posted Date, Notes, and Title
    field display.

    Hi Jim ,
    According to your description, my understanding is that  you want to display custom columns in your home page posts web part.
    Please go to the home page -> Edit Page -> Edit the Posts Web Part ->in the Posts Web Part Settings Page , click  Edit the current view -> check the column you want to display and click OK.
    The fields  are  now available to be rendered as part of the current view.
    Then we need to create the custom JavaScript file that will render the new fields for  the post body. You can refer to the blog:
    HOW TO: Add a custom field to blog posts in SharePoint 2013
    Hope this helps!
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Parent Child forms

    Hi,
    I've only just started playing with swing forms, I've created a few and now I've decided that I want some to be parent frames and some to be child frames - what's the best way to go about this?
    A little explaination
    I have a main login panel then dependant on your login type you get a buyers or a sellers panel, each one on those panels can then click to a couple of others e.g add item or delete item. when these 3rd level forms are closed (using the cross) It does a sytem.exit but I want it to go back to the parent form and refresh the datatable I have made (a list of the sellers items for instance). All panels are currently JFrames, is there a quick way to convert them?
    Thank you
    Sara :)

    Make them JDialogs instead and remove the System.exit() call. See [the tutorial|http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html].
    Also the is a Swing forum which is a better place for Swing questions.

  • SharePoint 2013: Infopath browser form "get form from" option greyed out

    In a web part page, I was able to add an app/list web part and an InfoPath web part, where the latter is setup with a "Get Form From" data connection with the former.
    Now I was trying to do the same within the edit page of the tasks list, as I was aiming to allow the user to edit the item related to the task and to approve the task from the same page. I can add the two web parts. However, the "Get Form From"
    data connection is not available in this case. What do I need to do to make it so?
    Thanks.

    Hi Ahmed,
    Please go to task list page and click customize form, then publish it in the InfoPath form designer.
    Now add a new page in SharePoint site, insert task list web part, then insert an InfoPath form web part. Click the triangle on the top right corner > Edit web part > Connections > Get form from, see if you could select task now.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Parent / Child forms or sharing a parent region across child tabs

    I want to find a way to have the same region appear on multiple pages.
    ApEx has a good master / detail form wizard. And I have used other constructs (master view, report, "add a detail record button", etc) to make the screens more user friendly, less prone to user error, etc.
    In the past where there are a small number of these maintenance requirements I have used tabs, select list, menus, etc. to manage the user experience.
    I am now faced with an explosion of these types of tasks that require a fairly large dataset to be broken into many smaller maintenacne pages that are accessed by the role of the user. Could be up to 250 of these "master/detail" screens.
    I want to avoid 250 copied regions, or 10 regions copied 25 times... I want to have a single instance of a "master summary" region that I can share across several pages. The idea is to have as little redundant code (regions) as possible to ease developement and maintenance.
    I haven't figured this out yet and it does not seem anyone else is even looking for this functionality. Am I all alone with this need...
    Guess I'll go have a beer... or six.
    Any ideas are appreciated and I will buy a beer for anyone who shows up at my sailboat in Santa Cruz on April 20th.
    Sam

    I thought about that as an option. Create several regions on page 0 that were defaulted to not display and then have them appear as needed. That may be the answer.
    My level of sophitication with Apex is good when it is db desing, app design, ui, but I am not a WEB developer and so the finder points of HTML or java are somewhat a mystery to me.
    I saw some writeups on htmldb_get as being able to call shared processes or application pages. I know I can redirect to a ApEx url, I wondered if there was a way to call a region as an option.
    Thanks for the input,
    Sam

  • Best Method For Parent/Child Form Interaction

    Can anyone advise the best way to achieve the following?
    * I have two forms
    * Form1 creates an instance of Form2
    * A user action on Form2 will affect a change on Form1
    At the moment, when Form1 creates Form2, it adds an event handler to a method within Form1;
    lookupFrame = new accountLookupFrame();
    lookupFrame.lookupTable.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    lookupTableMouseClicked(evt);
    lookupFrame.setVisible(true);For this to work, Form2 is set for public access. Is there a better way of achieving this effect?

    Check out my ParamDialog class (added below). In particular, check out the applyOnChange method. When this is switched on, any changes to the parameter fields will generate an apply() event (ParamDialog must be overridden to specify what happens on apply)
    You should also be able to find StandardDialog by searching here; I just linked someone else to it. I think that should be all you need.
    You are welcome to use and modify this code, but please do not change the package or take credit for it as your own work
    ParamDialog.java
    ==============
    package tjacobs.ui;
    import java.awt.Dialog;
    import java.awt.Frame;
    import java.awt.GraphicsConfiguration;
    import java.awt.HeadlessException;
    import javax.swing.AbstractButton;
    import javax.swing.JButton;
    import javax.swing.JCheckBox;
    import javax.swing.JComboBox;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenuBar;
    import javax.swing.JPanel;
    import javax.swing.JPasswordField;
    import javax.swing.JTextField;
    import javax.swing.text.Document;
    import tjacobs.CollectionUtils;
    //import tjacobs.OmniListener;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.InputMethodEvent;
    import java.awt.event.InputMethodListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.beans.VetoableChangeListener;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Observable;
    import java.util.Observer;
    import java.util.Properties;
    /** Usage:
    * *      ParamDialog pd = new ParamDialog(new String[] {"A", "B", "C"});
    * pd.pack();
    * pd.setVisible(true);
    * Properties p = pd.getProperties();
    public class ParamDialog extends StandardDialog {
         public static final String SECRET = "(SECRET)";
         public static final String CHECKBOX = "(CHECKBOX)";
         public static final String BUTTON = "(BUTTON)";
         public static final String BUTTON_SOLO = "(BUTTON_BOTH)";
         //public static final String BLANK = "(BLANK)";
         public static final String COMBO = "COMBO)";
         String[] fields;
         HashMap<String, GetText> mValues = new HashMap<String, GetText>();
         private boolean mShowApplyButton = false;
         //private Observable mObservable;
         //private OmniListener mOmniListener;
         private static interface GetText {
              public String getText2();
              public void setText2(String txt);
         private static class TextField extends JTextField implements GetText {
              public void setText2(String s) {
                   setText(s);
              public String getText2() {
                   return getText();
         private static class PasswordField extends JPasswordField implements GetText {
              public void setText2(String s) {
                   setText(s);
              public String getText2() {
                   return getText();
         private static class TextButton extends JButton implements GetText {
              public TextButton(String s) {
                   super(s);
              public void setText2(String s) {
                   setText(s);
              public String getText2() {
                   return getText();
         private static class TextCheckbox extends JCheckBox implements GetText {
              public void setText2(String s) {
                   setSelected("true".equals(s));
              public String getText2() {
                   return "" + isSelected();
              public void _setText(String s) {
                   super.setText(s);
              public String _getText() {
                   return super.getText();
              public String getLabel() {
                   return "";
         private static class TextCombo extends JComboBox implements GetText {
              public String getText2() {
                   return getSelectedItem().toString();
              public void setText2(String str) {
                   setSelectedItem(str);
         public ParamDialog(String[] fields) throws HeadlessException {
              this(null, fields);
         public ParamDialog(JFrame owner, String[] fields) {
              this (null, fields, null);
         public ParamDialog(JFrame owner, String[] fields, String[] initialValues) {
              super(owner);
              setModal(true);
              this.fields = fields;
              JPanel main = new JPanel();
              JPanel buttonP = null;
              UniversalChangeListener ucl = null;
              if (applyOnChange()) {
                   ucl = new UniversalChangeListener() {
                        public void apply(AWTEvent ev) {
                             ParamDialog.this.apply();
              main.setLayout(new GridLayout(fields.length, 1));
              for (int i = 0; i < fields.length; i++) {
                   JPanel con = new JPanel(new FlowLayout(FlowLayout.RIGHT));
    /*               if (fields.endsWith(BLANK)) {
                        //add space filler
                        buttonP = null;
                        con.add(new Component(){
                             public Dimension getPreferredSize() {
                                  return new Dimension(40, 15);
                        //con.add((Component)null);
                   else
                   if (fields[i].endsWith(BUTTON_SOLO)) {
                        JLabel l = new JLabel(fields[i].substring(0, fields[i].length() - BUTTON_SOLO.length()));
                        con.add(l);
                        TextButton jb = new TextButton("...");
                        //if (ucl != null) {
                        //     ucl.addComponent(jb);
                        mValues.put(fields[i], jb);
                        con.add(jb);               
                   else
                   if (fields[i].endsWith(BUTTON)) {
                        TextButton jb = new TextButton(fields[i].substring(0, fields[i].length() - BUTTON.length()));
                        //if (ucl != null) {
                        //     ucl.addComponent(jb);
                        mValues.put(fields[i], jb);
                        if (buttonP != null) {
                             buttonP.add(jb);
                             buttonP = null;
                             continue;
                        else {
                             con.add(jb);
                             buttonP = con;
                   else {
                        buttonP = null;
                        if (fields[i].endsWith(CHECKBOX)) {
                             TextCheckbox tb = new TextCheckbox();
                             if (ucl != null) {
                                  ucl.addComponent(tb);
                             con.add(new JLabel(fields[i].substring(0, fields[i].length() - CHECKBOX.length())));
                             con.add(tb);
                             //if (initialValues != null && initialValues.length > i) {
                             //     tb.setText(initialValues[i]);
                             mValues.put(fields[i], tb);
                        else if (fields[i].endsWith(COMBO)) {
                             int idx = fields[i].lastIndexOf('(');
                             if (idx == -1) {
                                  throw new IllegalArgumentException(fields[i]);
                             String[] args = fields[i].substring(idx + 1, fields[i].length() - COMBO.length()).split(" ");
                             TextCombo combo = new TextCombo();
                             for (int j = 0; j < args.length; j++) {
                                  combo.addItem(args[j]);
                             combo.setEditable(false);
                             fields[i] =fields[i].substring(0, idx);
                             JLabel l = new JLabel(fields[i].substring(0, idx));
                             if (ucl != null) {
                                  ucl.addComponent(combo);
                             con.add(l);
                             con.add(combo);
                             //mValues.put(idx == -1 ? fields[i] : fields[i].substring(0, idx), combo);
                             mValues.put(fields[i], combo);
                        else if (fields[i].endsWith(SECRET)) {
                             PasswordField tf;
                             con.add(new JLabel(fields[i].substring(0, fields[i].length() - SECRET.length())));
                             tf = new PasswordField();
                             if (ucl != null) {
                                  ucl.addComponent(tf);
                             tf.setColumns(12);
                             con.add(tf);
                             if (initialValues != null && initialValues.length > i) {
                                  tf.setText(initialValues[i]);
                             mValues.put(fields[i], tf);
                        else {
                             TextField tf;
                             con.add(new JLabel(fields[i]));
                             tf = new TextField();
                             if (ucl != null) {
                                  ucl.addComponent(tf);
                             tf.setColumns(12);
                             con.add(tf);
                             if (initialValues != null && initialValues.length > i) {
                                  tf.setText(initialValues[i]);
                             mValues.put(fields[i], tf);
                   main.add(con);               
              this.setMainContent(main);
         public Component getComponentForField(String name) {
              return (Component)mValues.get(name);
         public boolean showApplyButton() {
              return mShowApplyButton;
         public void setActionListener(String buttonName, ActionListener listener) {
              GetText gt = mValues.get(buttonName);
              if (gt instanceof AbstractButton) {
                   AbstractButton ab = (AbstractButton) gt;
                   ab.addActionListener(listener);
         public void apply() {
         private boolean mCancel = false;
         public void cancel() {
              mCancel = true;
              super.cancel();
         public void setField(String field, String value) {
              //JTextField tf = mValues.get(field);
              GetText tf = mValues.get(field);
              if (tf != null) {
                   tf.setText2(value);
         public Properties getProperties() {
              if (mCancel) return null;
              Properties p = new Properties();
              for (int i = 0; i < fields.length; i++) {
                   p.put(fields[i], mValues.get(fields[i]).getText2());
              return p;
         public void setProperties(Properties p) {
              Iterator<Object> _i= p.keySet().iterator();
              while (_i.hasNext()) {
                   String key = (String) _i.next();
                   String value = (String) p.get(key);
                   setField(key, value);
         public void enableLoadAndSave() {
              JMenuBar bar = new JMenuBar();
              FileMenu fm = new FileMenu() {
                   public void save(File f) throws IOException {
                        FileOutputStream out = new FileOutputStream(f);
                        getProperties().store(out, null);
                   public void load(File f) throws IOException {
                        FileInputStream in = new FileInputStream(f);
                        Properties p = new Properties();
                        p.load(in);
                        setProperties(p);
                   public boolean showSaveAs() {
                        return true;
              fm.setPrevSaveFile();
              bar.add(fm);
              setJMenuBar(bar);
         public static void main (String[] args) {
              //ParamDialog pd = new ParamDialog(new String[] {"A", "B", "C"});
              //WindowUtilities.visualize(pd);
              //Properties p = getProperties(new String[] {"A","B","C"});
              //String strs[] = new String[] {"A" + BUTTON, BLANK, "B" + CHECKBOX, "C" + SECRET, "D", "E"};
              String strs[] = new String[] {"A" + BUTTON, "Z" + BUTTON, "B" + CHECKBOX, "C" + SECRET, "D", "E", "F (A B C" + COMBO};
              String initial[] = new String[] {"A", "", "true", "pass", "", ""};
              ParamDialog pd = new ParamDialog(null, strs, initial);
              ActionListener al = new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        System.out.println(((JButton) ae.getSource()).getLabel());
              pd.setActionListener("A" + BUTTON, al);
              pd.setActionListener("Z" + BUTTON, al);
    //          pd.addObserver(new Observer() {
    //               public void update(Observable o, Object obj) {
    //                    System.out.println("got update");
              pd.enableLoadAndSave();
              WindowUtilities.visualize(pd);
              Properties p = pd.getProperties();
              //CollectionUtils.printCollection(p);
         public static Properties getProperties(String[] fields) {
              ParamDialog pd = new ParamDialog(fields);
              //pd.setModal(false);
              WindowUtilities.visualize(pd);
              return pd.getProperties();          
         public void setShowApplyButton(boolean b) {
              mShowApplyButton = b;
         public boolean getShowApplyButton() {
              return mShowApplyButton;
         public boolean applyOnChange() {
              return false;
         public void save(File f) throws IOException {
              FileOutputStream out = new FileOutputStream(f);
              getProperties().store(out, "params");
         public void load(File f) throws IOException {
              Properties p = new Properties();
              p.load(new FileInputStream(f));
              setProperties(p);
    //     public void dispose() {
    //     super.dispose();
    //     Iterator _i = mValues.values().iterator();
    //     while (_i.hasNext()) {
    //          JComponent c = ((JComponent)_i.next());
    //          //c.addPropertyChangeListener("value", listener);
    //          //c.addVetoableChangeListener(listener2);
    //          //c.addInputMethodListener(listener3);
    //          mOmniListener.remove(c);

  • Create Sharepoint 2013/2010 Modal Forms for New Items, Multiple Lists

    I have a main page with 4 buttons. Each button is linked to a different list. My question is: how can I make it so that when a user clicks on a button, the new item form pops up? And then, once submitted, the new item form closes and the user is once again
    looking at just the mina page?
    I have seen many suggestions on the web for multiple buttons with one list, but not any for multiple buttons for multiple lists.
    I am relatively new to JQuery/coding, so if you have an answer please explain it in detail (think "Coding for Dummies," or some such format). I use a JQuery Doc. Library, and a Content Editor to reference to the specific JQuery I want to use.
    That is about as far as I have gotten on this.
    Any help would be greatly appreciated!

    Hi Cameron,
    I do have access to InfoPath. How would I do it through there? If it's easy and already designed within the program, I would much rather do that!
    As for the link you gave me - would you mind explaining it to me? I clicked on it and read the blog, but I'm confused on these things:
    1) How do I use the code to apply to 4 different lists, each attached to it's own button?
    2) I have the buttons already put on the page - how do I connect the code to said buttons?
    3) How would I make sure that each pop up closed upon form submission?
    I really appreciate your help! Thank you!

  • Jquery not fired on List display or edit forms in SharePoint 2013

    I have put the below code in List Display form. But I am not getting the alert. It used to work in 2010. After migration to 2013 it is not working although it works fine for all other pages. The jquery reference is on the master page.
    <script type="text/javascript">
    $(document).ready(function(){
    alert('Jquery');
    </script>

    Hi ,
    According to your description, my understanding is that your Jquery code didn’t work in SharePoint 2013 list display form.
    Please use IE Developer Tools(F12) to check whether there is a .js file like the screenshot:
    If not, you need to add a reference from Jquery class library like <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>.
    If this issue still exists, please use the following code to test:
    <script type="text/javascript">
    function show_alert()
    alert("Test!");
    _spBodyOnLoadFunctionNames.push("show_alert")
    </script>
    A similar post for your reference:
    http://sharepoint.stackexchange.com/questions/54125/why-does-jquerys-document-ready-not-fire
    Best Regards,
    Wendy
    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]
    Wendy Li
    TechNet Community Support

  • Uploading 2010 Infopath Form to Sharepoint 2013

    Hello,
    I uploaded a Infopath 2010 form from my Sharepoint 2010 website to my new Sharepoint 2013 website.
    I get the following editing message under my form title: Last modified at (todays date with time) by admin (Edit this Page)
    How can I deactivate this feature or is this a feature? If not what is it and how can I get rid of it ?
    Please help,
    Kind regards, Ali Tozlu

    Hi,
    According to your post, my understanding is that you got last modified message when you upload a InfoPath 2010 form.
    How did you upload the form from the SharePoint 2010 site to SharePoint 2013 site?
    Could you give more information about this issue?
    I tried to reproduce the issue with the following three methods, and in the library I not got the last modified message with the form.
    1.Use the “Open with Explorer” method.
    I opened the SharePoint 2010 site library in explorer which contained the InfoPath 2010 form, and opened the SharePoint 2013 site library in explorer.
    Then I dragged the InfoPath 2010 form to the SharePoint 2013 site, the form upload without the last modified message.
    2.Upload the form using the URL
    In SharePoint 2013 site library, I clicked the “New dcument”->Browser->typed the URL of the SharePoint 2010 site library which contained the InfoPath 2010 form.
    The form also upload without the last modified message.
    3.Downloaded the InfoPath 2010 form to local computer, then uploaded the form to SharePoint 2013 library, the form upload without the last modified message.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Write Windows forms for online SharePoint 2013

    Hi Folks,
                I have task to upload the documents in document library in online SharePoint 2013  using Windows form .
                Can any one help me how I can do this task  writing windows form for online SharePoint 2013
    Samar

    Try if below can help
    using Microsoft.SharePoint; 
    http://www.codeproject.com/Tips/566370/Developing-Sharepoint-Windows-Forms
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/bf1a37c5-ed5e-4196-b3c7-3f95c40e4f26/windows-forms-intergrated-with-sharepointis-it-possible?forum=sharepointdevelopmentlegacy

  • How to create a folder with standard contained folders and files in SharePoint 2013?

    I've got folders and files on my SharePoint 2013 site that form a template when I add a new folder for a customer. When I create a new folder for a customer, I want those folders and files added automaticly to that new folder. How can I do that?

    How would I go about doing this without Visual Studio? Is that possible? Need to create Folder templates.
    Every "new folder" created should have nested folders already included. 
    Company Name (New Folder 1) 
    Company Documents (1.01)
    Tax Documents (1.02)
    Bank Statements (1.03)
    Extreme novice, please give as much details as possible! I'm trying to implement SP 2013 without all the 2013 software (Visual Studios, SharePoint Designer, etc.)
    Thank you!

Maybe you are looking for

  • Need help in runtime error

    I try to run the ausp dbtable. with entries of object: 00001019680 and more that 1300 entries Inter char. sr_code classtype: z01 the problem is display in a short dump with this message There is no help text for this runtime error either the text was

  • Business Object BUS1065 using PA30

    Dear Experts, As per my requirement, I am using business object BUS1065 in PA30 for creating attachment and stored document until here it is working fine but the business object is not taking the info type value which is I entered in PA30 transaction

  • Can we update the android version of this phone?

    Can we update the android version of this phone?

  • PGA memory leak detected

    Hi all, I using Database version 9.0.2.1 on Windows. In Udump\.....trace file have a message: *** 2004-04-11 13:28:58.000 *** SESSION ID:(4.1) 2004-04-11 13:28:57.000 ******** ERROR: PGA memory leak detected 10340 > 6004 ******** HEAP DUMP heap name=

  • 3.01 suddenly wont work??

    I have been using 3.01 on my Macpro fine, all has been well, but suddenly today when adding my film to compressor it just stopped encoding? I had been using it 1 hour before and it was fine but then I started to compress a new job - added a preset fo