Git Product home page Git Product logo

spforms's Introduction

SPForms

A forms solution for SharePoint 2013 and 2010. It is built in TypeScript (so it compiles to JavaScript). To use it, just download the compiled SPForms.js file.

Why do I need it?

  • You need a simple (or even complex) form to let users enter something and store it within a SharePoint list.
  • You don't like the existing alternatives like
    • Default SharePoint New/Edit Forms
    • InfoPath (R.I.P)
    • waiting for Microsoft to make the successor of InfoPath available (on prem)

Requirements

SPForms depends on the following libraries:

Just download the required files

For SharePoint 2010:

For SharePoint 2013:

How does it work

It's super simple: Just create a standard HTML form and apply some attributes. You can use whatever you want: HTML5 stuff, JavaScript frameworks, JavaScript libraries, etc.

Ok, here is an example of a basic form to write to a SharePoint list: First add a reference to the JavaScript file(s) (to your PageLayout, Masterpage or directly within a Content Editor Web Part):

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/ui/1.11.3/jquery-ui.min.js"></script>    
<script type="text/javascript" src="SPForms.2013.js"></script>

If you want to use the people picker (in SP2013), add the following references to the existing SharePoint js files (before the SPForms.2013.js):

<script src="/_layouts/15/clientforms.js"></script>
<script src="/_layouts/15/clientpeoplepicker.js"></script>
<script src="/_layouts/15/autofill.js"></script>

Second, create a form (for example directly within a Content Editor Web Part):

    <div>
        <input type="text" name="Name" />
        <br />
        <input type="text" name="EMail" />
        <br />
        <input type="radio" name="AcceptLicense" id="radio1" value="Yes" />
        <label for="radio1">Yes</label>
        <input type="radio" name="AcceptLicense" id="radio2" value="No" />
        <label for="radio2">No</label>
        <br />
        <input type="hidden" value="some hidden value" id="hidden1" />
        <label for="people1">Manager:</label>
        <input type="text" id="people1" />
        <br />
        <input type="button" value="Save" />
    </div>

Now add the data-form- attributes to it to make it a SharePoint list form: (make sure, all input elements have a valid id attribute)

    <div id="myspform" data-form-settings='{"maxParticipants": 5}'>
        <input id="name" type="text" name="Name" data-form-field="Title" data-form-required="true" data-form-validationmessage="This is a required field" data-form-profile="DisplayName" />
        <br />
        <input id="email" type="text" name="EMail" data-form-field="EMail" data-form-required="true" data-form-validate="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" data-form-validationmessage="Not a valid email address" data-form-profile="EMail" />
        <br />
        <input type="radio" name="AcceptLicense" id="radio1" value="Yes" data-form-field="LicenseAccepted" />
        <label for="radio1">Yes</label>
        <input type="radio" name="AcceptLicense" id="radio2" value="No" data-form-field="LicenseAccepted" />
        <label for="radio2">No</label>
        <br />
        <input type="hidden" value="some hidden value" id="hidden1" data-form-field="HiddenField" data-form-includeHidden="true" />
        <label for="people1">Manager:</label>
        <input type="text" id="people1" data-form-peoplepicker="true" data-form-field="Manager" data-form-peoplepicker-value="accountname" />
        <br />
        <input type="button" value="Save" data-form-submit="true" data-form-submit-list="MyList" data-form-submit-onsuccess="onSubmitSuccess" data-form-submit-onfailed="onSubmitFailed" data-form-submit-onvalidationerror="onValidationError"/>
    </div>

Now to the magic stuff, just add some JavaScript:

    <script type="text/javascript">
        $(document).ready(function () {
            SPForms.FormManager.init("myspform");
        });

        function onSubmitSuccess() {
            alert("Success");
        }
        function onSubmitFailed(message) {
            alert("Error: " + message);
        }
        function onValidationError() {
            alert("Please check required fields");
        }
    </script>

    <!-- The css class form-invalid is added to all form elements
        if they are not valid on submit -->
    <style type="text/css">
    .form-invalid
    {
        border: 1px solid red !important;
    }
</style>

You can even prepopulate fields by query string. Just add form- to the data-form-field names and append them to the URL.

/myForm.aspx?form-title=the%20title

Available attributes

Here are the available attributes:

    data-form-settings                      Valid just once on the main forms div
    data-form-field                         Column name in the SharePoint list 
    data-form-required                      true|false
    data-form-includeHidden                 true|false Defines if value is written to the list even if the element is hidden
                                            If this attribute is omitted, only values of visible elements will be written to the list
    data-form-validate                      RegEx to validate the value
    data-form-validationmessage             Message to display within the tooltip on validation/required errors
    data-form-peoplepicker                  true to define an input box as a people picker
    data-form-peoplepicker-value            Used on the 2010 peoplepicker to define what is saved to the SP list as text (see details below).
                                            The 2013 picker always saves the selected user in a user field.
    data-form-datepicker                    true to define a datepicker
    data-form-profile                       A profile property of the current user to pre-populate the field with (see details below)
    data-form-submit                        true to make this element the "submit" button
    data-form-submit-list                   Title of the SP List to write to
    data-form-submit-onsuccess              Javascript function to execute after successful submit
    data-form-submit-onfailed               Javascript function to execute after failure
    data-form-submit-onvalidationerror      Javascript function to execute if any field is invalid
    
    For details about the DropDown options see the Sample.html
    data-form-select-list                   On select elements, load items from the specified SharePoint list
    data-form-select-valueColumn            Defines which column from the list should be used as options text and value
    data-form-select-setValuesToElements    Set the values of additional columns from the SharePoint list to other HTML elements
                                            Format: HtmlElementId=ColumnFromSPList (you can have multiple separated by comma)
    data-form-select-dependency-filter      Filter this drop down based on another drop down
                                            Format: ColumnToFilterFromSPList=FieldNameOfAnotherDropDown

For the data-form-profile attribute, the following values are allowed:

DisplayName
FirstName
LastName
EMail
Department
Phone
Title

For data-form-peoplepicker-value on the 2010 people picker, the following values are allowed:

displayname
accountname
email

spforms's People

Contributors

mwiedemeyer avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.