Using custom control in Infopath 2013 to populate a Custom List in Sharepoint

Is there any way to add custom controls, such as InkCapture, to sharepoint list forms? My specific application requires me to use a sharepoint Custom List so I developed a form in Infopath to serve as the data entry point. Unfortunately there is no option
to add or use custom controls when editing my form in Infopath.
When I create a Form Library all my custom controls are available to use.
Any ideas?
Much Appreciated!

Hi,
InfoPath is only a forms editing tool and does not provide for grid editing or other expected features like adding any custom control, you can design a template
part to reuse in multiple form template here you can create your own custom control by using existing control in InfoPath and you have facility to write code to implement any business logic that’s called template part and you can add this template part in
your any InfoPath form over and over. Here is the link for creating the custom template part in InfoPath.
https://support.office.com/en-za/article/Design-a-template-part-to-reuse-in-multiple-form-templates-cfcb14e0-059b-4b0e-a200-3faa409f52f0
Here is the list of features that you can use in List form, InfoPath form and using SharePoint designer you can choose as per your nee.
http://go.limeleap.com/community/bid/300409/SharePoint-Forms-Comparison-Lists-vs-SP-Designer-vs-InfoPath
Krishana Kumar http://www.mosstechnet-kk.com
Please mark the replies and Proposed as answer if they help and solve your issue

Similar Messages

  • Not able to add taxonomy Control(Activex Control) under Add /remove Custom Controls in infopath 2010

    Hi ,
    Not able to add taxonomy control(activex Control) , under Add/Remove Custom controls in infopath 2010 ..i'm getting the fallowing error ..
    error:This control could not be added through custon control wizard,to use this control go to Controls gallery in home tab.
    Regards
    Giriraj

    Hi,
    I am getting same error while adding contact selector control. And this control is not visilb in controls gallery on home tab. Please help. Thanks!
    Gaurav

  • How to delete an Item using Button control in InfoPath 2010

    Dear Experts
    In my SharePoint 2010 List, I have added and using below controls instead of Ribbons
    1) Save (button control)
    2) Cancel (button control)
    3) Delete (button control)
    My requirement is when i click on Delete (button control) in edit form then particular item has to be deleted
    How to achieve this
    Regards
    Santosh

    Hi Santosh,
    Please check this 
    http://www.bizsupportonline.net/browserforms/delete-sharepoint-list-items-object-model-infopath-browser-form.htm
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Infopath 2013 form load problems connecting to a SharePoint Library.

    I have created an Infopath 2013 form.  I am connecting to a SharePoint 2013 library.  In the infopath form I have multilple views with rules. (Rule is:  if title field is blank use default view). When I first open/create a new form in sharepoint
    (using the web browser option) the default view is there.  After submitting the form, I then try to add a new form and the second view is now the default view.  Is there a setting I need to change.  I have pretty much tried everything I can
    think of to fix this.  Your help would be greatly appreciated!

    Hi,
    According to your description, my understanding is that the second view became the default view when adding a form in SharePoint library.
    By default, the default view will be loaded when opening the form.
    How did you set the rules in the InfoPath form?
    If the form loads with the second view when opening the form, I recommend to check if there is any Form Load rule to load the second view by default.
    Could you please provide more details about the form for reproducing?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How to disable delete option or symbol in attachment control in infopath 2010

    Any have any idea how to disable the delete option or symbol near the attached file using attachment control in infopath 2010.
    I have created a custom list in sharepoint online 2013(Office 365) and customized it in  Infopath forms 2010 
    i want tht user can attach the files using attachment control but not to allow to delete other attached files.
    plzzzzzz help me out :( .

    Hello,
    As per my finding, you have to custom create event receiver to handle this situation. Use "ItemAttachmentDeleting" event to prevent user to delete attachment. Please refer below MSDN link to implement this:
    http://stackoverflow.com/questions/2023414/prevent-deletion-of-attachments-from-a-sharepoint-list-item
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Problem with custom control and focus

    I've a problem with the focus in a custom control that contains a TextField and some custom nodes.
    If i create a form with some of these custom controls i'm not able to navigate through these fields by using the TAB key.
    I've implemented a KeyEvent listener on the custom control and was able to grab the focus and forward it to the embedded TextField by calling requestFocus() on the TextField but the problem is that the TextField won't get rid of the focus anymore. Means if i press TAB the first embedded TextField will get the focus, after pressing TAB again the embedded TextField in the next custom control will get the focus AND the former focused TextField still got the focus!?
    So i'm not able to remove the focus from an embeded TextField.
    Any idea how to do this ?

    Here you go, it contains the control, skin and behavior of the custom control, the css file and a test file that shows the problem...
    control:
    import javafx.scene.control.Control;
    import javafx.scene.control.TextField;
    public class TestInput extends Control {
        private static final String DEFAULT_STYLE_CLASS = "test-input";
        private TextField           textField;
        private int                 id;
        public TestInput(final int ID) {
            super();
            id = ID;
            textField = new TextField();
            init();
        private void init() {
            getStyleClass().add(DEFAULT_STYLE_CLASS);
        public TextField getTextField() {
            return textField;
        @Override protected String getUserAgentStylesheet() {
                return getClass().getResource("testinput.css").toExternalForm();
        @Override public String toString() {
            return "TestInput" + id + ": " + super.toString();
    }skin:
    import com.sun.javafx.scene.control.skin.SkinBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.control.TextField;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputSkin extends SkinBase<TestInput, TestInputBehavior> {
        private TestInput control;
        private TextField textField;
        private boolean   initialized;
        public TestInputSkin(final TestInput CONTROL) {
            super(CONTROL, new TestInputBehavior(CONTROL));
            control     = CONTROL;
            textField   = control.getTextField();
            initialized = false;
            init();
        private void init() {
            initialized = true;
            paint();
        public final void paint() {
            if (!initialized) {
                init();
            getChildren().clear();
            getChildren().addAll(textField);
        @Override public final TestInput getSkinnable() {
            return control;
        @Override public final void dispose() {
            control = null;
    }behavior:
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputBehavior extends BehaviorBase<TestInput> {
        private TestInput control;
        public TestInputBehavior(final TestInput CONTROL) {
            super(CONTROL);
            control = CONTROL;
            control.getTextField().addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                @Override public void handle(final KeyEvent EVENT) {
                    if (KeyEvent.KEY_PRESSED.equals(EVENT.getEventType())) {
                        keyPressed(EVENT);
            control.focusedProperty().addListener(new ChangeListener<Boolean>() {
                @Override public void changed(ObservableValue<? extends Boolean> ov, Boolean wasFocused, Boolean isFocused) {
                    if (isFocused) { isFocused(); } else { lostFocus(); }
        public void isFocused() {
            System.out.println(control.toString() + " got focus");
            control.getTextField().requestFocus();
        public void lostFocus() {
            System.out.println(control.toString() + " lost focus");
        public void keyPressed(KeyEvent EVENT) {
            if (KeyCode.TAB.equals(EVENT.getCode())) {
                control.getScene().getFocusOwner().requestFocus();
    }the css file:
    .test-input {
        -fx-skin: "TestInputSkin";
    }and finally the test app:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class Test extends Application {
        TestInput input1;
        TestInput input2;
        TestInput input3;
        TextField input4;
        TextField input5;
        TextField input6;
        Scene     scene;
        @Override public void start(final Stage STAGE) {
            setupStage(STAGE, setupScene());
        private Scene setupScene() {
            input1 = new TestInput(1);
            input2 = new TestInput(2);
            input3 = new TestInput(3);
            input4 = new TextField();
            input5 = new TextField();
            input6 = new TextField();
            GridPane pane = new GridPane();
            pane.add(input1, 1, 1);
            pane.add(input2, 1, 2);
            pane.add(input3, 1, 3);
            pane.add(input4, 2, 1);
            pane.add(input5, 2, 2);
            pane.add(input6, 2, 3);
            scene = new Scene(pane);
            return scene;
        private void setupStage(final Stage STAGE, final Scene SCENE) {
            STAGE.setTitle("Test");
            STAGE.setScene(SCENE);
            STAGE.show();
        public static void main(String[] args) {
            launch(args);
    The test app shows three custom controls on the left column and three standard textfields on the right column. If you press TAB you will see what i mean...

  • Repeting control in Infopath list form

    Hi ,
    I want to create repeating control in List InfoPath form... Repeating control only comes in form template, but I have list form which I edited and done the changes in InfoPath, Now I want to add somehow repetign control , how can I do that
    if it is not possible any other way I can achieve repeating kind of structure in list InfoPath form . 
    Please mark answer , if you think answer is helpful or correct.

    Hi,
    According to your post, my understanding is that you want to use repeating control in InfoPath List Form.
    To submit data to a SharePoint list from an InfoPath form, you could create a
    SharePoint List form template that allows multiple items to be submitted.
    For more information, you can refer to:
    2 Ways to use a repeating table with a SharePoint list in InfoPath 2010
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Generic custom control that can display an image or swf?

    Hi,
    I want to create a custom control that can take an image or swf as an argument and display it in the same way.
    If the programmer uses this control (which essentially is a button with custom display) I want him to be able to just state the source and the text that is to be shown. Like this:
       <myControls:myButtonControl descriptionText="swf object" symbolObject="{Application.application.shape01swf}">
    or
       <myControls:myButtonControl descriptionText="img object" symbolObject="{Application.application.shape01img}">
    where shape01swf and shape01swf are embeded objects as follows:
       [Embed("../assets/swf/Shape01.swf")]
        public var shape01swf:Class;
       [Embed("../assets/images/Shape01img.jpg")]
       public var shape01img:Class;
    Which kind of object should I create in my custom control that can display this?
    Right now I have created a Class that extends VBox so that I can display the image/swf above the descriptionText.
    (I am using Flex 3.)

    Aha, so the Image control can use an swf as a source as well?
    I just assumed that it could not and I would have to use the SWFLoader to do it.
    So, this is my solution:
            override protected function createChildren():void{
                iconField = new Image();
                addChild(DisplayObject(iconField));
                textField = new Text();
                addChild(DisplayObject(textField));
                super.createChildren();
            private function init(e:Event):void{
                iconField.source = symbolObject;
                textField.text = descriptionText;
    Thanks!

  • Infopath 2013 - Values are not appearing in a drop down field referencing site column which uses lookup in custom list

    I have a master custom list that has a set of site columns. For each site column there is a lookup to a custom list with reference data. When I edit the list in data entry view all values in drop down fields work fine, but when I customize the form for
    the master list, no data appears in the drop down fields. I can change the data binding on the form so it references the the correct data and when I preview the form it works. But when I publish it, no data is available in these drop down fields.

    Hi  shakonarson,
    According to your description, I try to reproduce your scenario but the lookup field works fine.
    When we customize the form for the  list  in the InfoPath 2013 , it is by design that the Drop-Down List Box control cannot  display its value.
    For troubleshooting your issue, please take steps as below:
    Go to lookup List Box on your form in  InfoPath 2013 , right click it and choose “Drop-Down List Properties” from the bottom of your field menu.
    Make Sure you select “Get choices from an external data source” and correct Data source.
    Make Sure the Xpath  of Entries is “d:SharePointListItem_RW” under the dataFields.
    Here is a good blog for sorting lookup column DropDown by customizing your list form with InfoPath you can have a  look:
    Sort SharePoint lookup column Dropdown by customizing your list form
    with InfoPath
    Hope this helps!
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Visual Studio 2013 slows down + crashes when using Source Control features.

    I have spent two full days trying to resolve this issue but no luck so here we go,
    I have created a project using Visual Studio Team Foundation Server plug-in in the past. Later on I switched to
    Microsoft Git Provider.
    Now when I connect to that project in the Team Explorer and double click on the solution to work on it locally it somehow changes the plug in to Microsoft Git Provider automatically and of course I can't
    Commit/Commit and Push since I receive following error in the Team Explorer,
    An error occurred. Detailed message: Failed to open directory 'C:/Users/.../AppData/Local/Application Data/'
    Manually changing the plug-in to the Visual Studio Team Foundation Server
    results in a broken Team Explorer as below,
    With Settings leading to an empty pane, and also a warning in the Team Explorer's Changes page telling me the message below if I click on Pending Changes...
    Microsoft Git Provider is not the current Source Control plug-in. Change Plug-in
    And manually selecting the solution from Solution Explorer, right click and
    Add Solution to Source Control, leads to never ending hour glass and (Not responding) visual studio.
    New Projects
    Creating a new project is straight forward, unless I "Add to Source Control" is checked. If so, again never ending process if Microsoft TFS plug-in is selected in the tools and eventually me Ending the Visual Studio task. And a VERY long process
    (40+ mins) if I have chosen Microsoft Git but that finishes successfully rather.
    New TFS project from Team Explorer
    If I create a new project in my Online Web Studio
    Click on Open with Visual Studio Link => Opens and connects to a my newly created TFS in team explorer.
    Clicking new in Team Explorer under Solutions to create a new solution and bind it to this Repo
    leads to straight crash of Visual Studio and restarting attempt of VS.
    So I really can't use Source Control from visual studio other than cloning GitHub's existing repo's on Visual Studio and Committing my current Microsoft Git managed projects.
    I have attempted
    Repairing Visual Studio (no luck in results)
    Devenv.exe /setup (no luck)
    Trying to scrap the SCC info on my solution then at least it won't get picked up by source control then I can Check it in as a new project. (no luck and the solution picks the Microsoft Git upon opening it by clicking on the .sln file.) I have followed
    these steps in this stack overflow answer.
    And lots of mucking around like removing my workspaces almost Thousand times and putting them back, binding and etc.
    I am really stuck on this and it's holding me back from staring a new project (which is problematic using Adding to Source Control) and unfortunately is dependent on the old project (which is developed under Visual Studio Team Foundation Server Plug-in which
    is throwing tantrums)
    Would like to hear you pro-s input on this
    Using 
    Visual Studio 2013 Community edition (recently switched from Pro to Express to Community)
    Windows 7 (64-bit)
    Git tools
    Git windows installation
    Nuget Package manager
    Visual Studio Log File
    http://filesave.me/file/50620/log-txt.html
    Mehradzie

    Hi Mehradzie,
    Based on the description, seems you're working with Git team project in Visual Studio Online(formerly Team Foundation Service). I'd like to know whether you mean Visual Studio Git command tool as the plug-in, and if you're trying to create solutions/projects
    with Visual Studio and add them to the created Git team project.
    From the screenshot, you're not connect to the Git team project by using Team Explorer. To work with Git team project locally, you can follow the instructions as below:
    Connect to Git team project by using Team Explorer, after that you might install Git tools if you connect to the team project for the first time
    Clone the remote Git repository to a local git repository and set the path to local git repository
    Create a solution and select Git source control, also saved to the local path of the local git repository
    Select your branch, and then click "Changes" and Commit the changes
    Click "unsynced commits" and push the commit to remote git repository
    You can also refer to the links below for more information about getting started with Git in Visual Studio Online.
    http://www.visualstudio.com/en-us/get-started/share-your-code-in-git-vs.aspx
    http://blogs.msdn.com/b/visualstudioalm/archive/2013/01/30/getting-started-with-git-in-visual-studio-and-team-foundation-service.aspx
    If you still have any other concerns, please elaborate more details about your scenario. Thanks for your understanding.
    Best regards,
    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.

  • So this is new... InfoPath 2013 on SharePoint 2013: Create a New Custom List, Edit Form in InfoPath, Attempt to Publish and...

    InfoPath blows up with an error message saying "Invalid form template"...
    No, I do not have any added data connections in the form.
    No, I have not added any fields or done any modifications of any kind to the form.
    I am doing exactly these steps:
    Open SPD
    Create a New Custom List
    Open List in SPD
    Click "Design Forms in InfoPath" (Item)
    Form opens in InfoPath 2013
    Click Publish (or Quick Publish...doesn't matter)
    See error message
    This wasn't a problem in my environment liiike, a week ago..? The only thing that's different is that I installed some security patches on the servers this morning...
    KB2737989
    KB2956153
    KB2956180
    KB2881078
    KB2760361
    KB2956175
    KB2956183
    KB2956143
    KB2920731
    KB2956181
    KB2760554
    KB2760508
    KB2880473
    KB3048778

    Hi ramz,
    Also you can try to check if there are more useful ULS logs related to InfoPath issue according to the time of this error "Invalid form template" occured, it could help troubleshoot the issue.
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • BizTalk Server 2013 R2 EDI EDIFACT custom Target Namespace is not being used

    I have a client that has a partner that doesn't use the "out of the box" BizTalk EDIFACT 97A DELFOR schema. I'm using BizTalk Server 2013 R2.  I need to use a custom target namespace.  I have created a custom schema for EFACT_D97A_DELFOR with
    a different namespace http://schemas.microsoft.com/BizTalk/EDI/EDIFACT/2006_<partnername>. 
    In the Parties agreement/Transaction Set Settings/Local Host Settings, I have the following in a separate row under the "Default", UNH2.1=DELFOR, UNH2.2=D, UNH2.3=97A and TargetNamespace=http://schemas.microsoft.com/BizTalk/EDI/EDIFACT/2006_<partnername>
    It wants to use the out of the box schema from the error below but I need it to use the custom schema. If I change the input file with a UH2.5 value along with changing the root node to match it EFACT_D97A_DELFOR_<UNH2.5), it works but the partner
    will not be sending this, so it's not an option.
    Error details: An output message of the component "Unknown " in receive pipeline "Microsoft.BizTalk.Edi.DefaultPipelines.EdiReceive, Microsoft.BizTalk.Edi.EdiPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    is suspended due to the following error:
         Error encountered during parsing. The Edifact transaction set with id '' contained in interchange (without group) with id '000010080', with sender id '<senderid>', receiver id '<receiverid>' is being suspended with following
    errors:
    Error: 1 (Miscellaneous error)
    70: Finding the document specification by message type "http://schemas.microsoft.com/BizTalk/EDI/EDIFACT/2006#EFACT_D97A_DELFOR" failed. Verify the schema deployed properly.
    Error: 2 (Miscellaneous error)
    71: Transaction Set or Group Control Number Mismatch
    Error: 3 (Miscellaneous error)
    29: Invalid count specified at interchange, group or message level
    Any thoughts for this issue?
    Thanks,
    Sean

    All,
    Because the trading partner is not sending the UNH2.5, UNG2.1 and UNG2.2 values in the incoming message, the EDIFACT custom targetnamespace schema will not be used.  I created a decode custom pipeline component where I inject the UNH2.5 element,changed
    the rootnode to the trading partner specific schema to  EFACT_D97A_DELFOR_XYZ (where "XYZ" is the value in the UNH2.5) and in the Party agreement->TransactionSetSettings->LocalHostSettings default row specifying the UNH2.1, UNH2.2
    and UNH2.5, it will then use the custom schema(http://schemas.microsoft.com/BizTalk/EDI/EDIFACT/2006#EFACT_D97A_DELFOR_XYZ.  I could've injected the UNG segment
    and used a custom target namespace and not changed the rootnode of the custom schema but didn't want to add all that extra segment information.
    The example below assumes that the UNH segment only has values "up to" UNH2.4 only and appends the UNH2.5.  Uses the UNA segement to dynamically set the componentDataElementSeparator.
    //UNA segment e.g. UNA:+.? '
    //this example above has ' as the segmentTerminator, : as the componentDataElementSeparator, + as the dataElementSeparator
    string unaSegment = messageBody.Substring(0, messageBody.ToUpper().IndexOf("UNA") + 9);
    string componentDataElementSeparator = unaSegment.Substring(3, 1);
    string dataElementSeparator = unaSegment.Substring(4, 1);
    string segmentTerminator = unaSegment.Substring(8, 1);
    string UNH_Segment = messageBody.Substring(messageBody.ToUpper().IndexOf("UNH"));
    UNH_Segment = UNH_Segment.Substring(0, UNH_Segment.IndexOf(segmentTerminator));
    //inject UNH2_5 in the existing UNH_Segment
    messageBody = messageBody.Replace(UNH_Segment,
    UNH_Segment + componentDataElementSeparator + UNH2_5);
    Thanks All for all your help!!
    Sean Boman

  • Date Controls in repeating table of Infopath 2013 only showing Calendar in first row date controls

    I am using SharePoint 2013 and InfoPath 2013.
    and using form library which uploaded at server.
    I am using repeating table over section . and place Date Controls.
    At the run time it is showing first row with START and END
    date controls.
    when I click INSERT Item it is showing second row with
    Date Controls.
    It is opening and showing calendar only on first row.
    But when I click Date Control button at second row it is not showing or opening calendar.
    Yesterday it was working. but today is not working at site.
    Although it is working on InfoPath 2013 Preview.

    Hi John,
    Based on your description, my understanding is that the Date Control cannot work correctly in the InfoPath form.
    I recommend to re-publish the form to SharePoint and then compare the results.
    Please go to the Library setting page of the library where the form is published > click Advanced Settings > click Edit Template in the Document Template > now the form will be opened in InfoPath Designer and then click Quick Publish button in the
    top of the menu tab.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • InfoPath 2013 customized forms no longer working after linking Sharepoint 2010 list to MS Access 2013 database

    Hello,
    I am having trouble with my infopath form now that I have linked my Sharepoint list to an Access database.  
    Background:  I created a simple SharePoint list and a few workflows to have users submit requests for changes to my organization's EMR system and have those requests be approved by the appropriate manager/department.  I used
    InfoPath to customize my form so that it would hide/show different portions depending on what the user selected.  The form has 3 views: NewItem, EditItem, ViewItem. 
    Issue: The form and workflows were working great until I linked my SharePoint list to an access database so that I could run queries and reports using that information. Now when I click "Add New Item" on my Sharepoint site,
    the correct form opens but the fields do not allow me to input any data and some of the formatting for the form has changed (ie: the text boxe fields are no longer centered.  I opened the form in InfoPath and it displays perfectly fine in there but
    not once it's published to the site) . 
    The only way that I've been able to input new data is using Datasheet view in SharePoint.  
    Is there a way to fix this issue?  I really need to be able to have the customized forms for users to fill out the information since most users are not familiar enough with SharePoint to expect them to be able to use Datasheet view to submit their requests. 
    Again, I'm using InfoPath 2013, Access 2013 & SharePoint Server 2010
    If the issue cannot be fixed, how can I disconnect or unlink my SharePoint list from the Access database because when I cliecked on "delete list" from inside Access, a warning popped up stating that it will also delete the list off of SharePoint
    as well.  If I can get the list back to the state it was in before linking to Access then I'll be happy enough to export it excel and then importh the excel file to Access as a work around for reporting purposes since I don't have to run the reports that
    often. 
    Any insight would be very helpful!!

    Hi Bostic,
    I tested the same scenario per your post in my environment, however the InfoPath form was not affected if I used the list as external data in Access database.
    The issue may be due to the browser you used.
    I recommend to verify the things below:
    Change another browser to see how it works.
    Add the site to the trusted zone and add to compatibility settings in Internet Explorer.
    Test with a new list to narrow down the issue scope.
    As a workaround, you can save the list as a template including content, and then create a new list based on this template.
    Learn how to Save a SharePoint List Template:
    http://www.fpweb.net/sharepoint-2010/tutorials/content/save-list-template/#
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • InfoPath 2013 custom list being locked versus lowering permission levels

    In an InfoPath 2013 custom list, I do not want the user to be able to make changes to the custom list once it has been submitted to the workflow 2013.
    The way I see to meet this goal is either lower the security level of the user to 'read only'. The other option is to lock the custom list record by using the mark a record (a declare a record) Feature.   
    Thus can you tell me what the better option is why you chose that solution?  Would you also tell me what the better user experience is? Basically there would be no selection like 'edit' or 'delete' when the option is not available.

    > An anti-pattern (or antipattern)
    is a common response to a recurring problem that is usually ineffective and risks being highly counterproductive
    src: http://en.wikipedia.org/wiki/Anti-pattern
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

Maybe you are looking for

  • How to get all production orders for a workcenter

    Hello ... I have a requirement to create a report of all production orders for a given workcenter.  The user enters the workcenter (CRHD-ARBPL), plant (CRHD-WERKS) and a date range, and wants to see a list of orders (AUFNR) that fall within that date

  • IOS 8.3 emails won't open

    I have an iPhone 4S. I updated to iOS 8.3 last night. Now, some emails will open and others will not open on my phone. Any ideas on where to start? So far I have: Signed into iCloud. Checked my settings (though I have not changed anything in settings

  • BizTalk FlatFile schema with header/Multiple Body/Trailer

    Hi, Can you please help to create a flat file schema for the below structure.? I have a flat file with Header , multiple Body, Trailer. I am receiving XML as input and generate output as FlatFile. My FlatFile looks like below, from Batch Header to Ba

  • Service not available

    Hey all, I live in Dallas Texas, and both my wife and I cannot call or receive calls, our phones go in and out of service, is there an outage locally?

  • I am trying to activate my microcell and I got an error message 102

    I have reset and hard reset as suggested on this forum and waited hours and continue to get flashing red network indicater. All other lights are solid green. This is my correct address but I am in the country. How do I fix this