July 2013 - Posts - Alyssa
in

InfoPath Dev

Alyssa

July 2013 - Posts

  • InfoPath Forms and Task List

    Summit the Peak!

    Blog2 peak the summit

    Tasks help you monitor progress towards goals. SharePoint task lists provide a central location for “To Do” lists across your team site. From your task list, it’s easy to add tasks, assign resources, update progress and view status towards milestones. SharePoint workflows tie tasks from all lists and libraries on your site back to your central task list repository. Your task list is your central hub for To Dos on your team site. Simple and effective!

    So, what’s the catch? Only SharePoint’s built-in workflows can automatically create the tasks which means your users need to navigate away from InfoPath to view status. For in form viewing of workflow status you need to pull tasks into the view and when a user clicks approve, submit them back to the task list. You’ll want tasks that are associated with your individual forms so that you can display them when the form opens.

    Out-of-box Solutions

    SharePoint comes with several options for power users:

    More Flexible

    To reduce cost, complexity and enable flex when your form’s data changes, you’ll want to look beyond hardcoded solutions that are not dynamic:

    Learn More

    Qdabra offers short video tutorials and in depth how-to hands-on-labs. Check out the following links:

  • How Do I Map InfoPath Form Data to a SharePoint List?

     

    SharePoint - Mind the gap

    Have SharePoint Tickets, but Can’t Get on the Train?

    InfoPath makes data collection easy – build a form, publish to SharePoint, and BINGO – your users fill them out. When users save or submit, the form promotes values to SharePoint and it’s easy to create custom views on that data or export it to Excel for further analysis.

    But, there’s a problem. You can only promote fields that are not repeating, and most forms have repeating data – in other words, the data world isn’t flat either. Promoted properties for repeating data limit you to aggregating or picking one item. How are you going to get multiple items data fields out of your form? Reporting today is all about “pivoting” data tables. How do you export more than one table from InfoPath?

    Out-of-box Solutions

    SharePoint comes with two out-of-box solutions, but both are brittle:

    Custom Code Solutions

    Of course, you could just delegate to your developer and have them:

    More Flexible Approach

    Yes, there’s a better way – actually a couple! First off, let’s look at a more flexible approach.

    Most Scalable

    But, what happens when you have thousands of forms with tens of thousands of repeating data items? SharePoint gets indigestion. So, here’s a second solution to overcome those limits and still use SharePoint as your dashboard:

    Learn More

    Qdabra offers short video tutorials and in depth how-to hands-on-labs. Check out the following links:

  • Top 10 InfoPath Workarounds

            

    Webinar

    So you’re a fan of InfoPath, you use it every day when designing your forms, you even literally dream of it sometimes – you just love InfoPath… but there are times you’re having “InfoPath nightmares” when you can’t make things work because of limitations, or – bugs! Well, the world isn’t perfect, there’s got to be at least one hole or a number of cracks somewhere, right?

    In this blog post, we’ll try to patch some of those “cracks” to at least lessen your InfoPath nightmares.

    Here’s a list of the top 10 workarounds I have in mind:

    1. Copying repeating data from a secondary data source into the main data source?

    One thing that you can’t easily do in InfoPath is to copy repeating data from a secondary data source – like a SharePoint list – to the main data source. This is an important necessity, because the data from secondary data connections does not get saved in the resulting XML data file of a submitted/saved InfoPath form. Read more…

    Dealing with more complex repeating data structure? Here’s the solution

    2. Concatenating lists of values?

    Use the double-eval trick. Let’s say you want to build a list of email addresses in your form, maybe for workflow purposes; or simply for sending the form to a dynamic list of people via email. You want something like this:

    figure1

    For the example shown above, we’ll have this for our schema:

    figure2

    The EmailAddresses field will contain the formula that will build the list of email addresses. The formula should look like so:

     figure1

    Here’s the complete XPath to that formula:

    substring(xdMath:Eval(xdMath:Eval(../my:UserList/my:User, 'concat(@my:email, substring(";", 1, string-length(@my:email)), " ")'), ".."), 1, string-length(xdMath:Eval(xdMath:Eval(../my:UserList/my:User, 'concat(@my:email, substring(";", 1, string-length(@my:email)), " ")'), "..")) - 2)

    3. Dynamically adding rows to repeating data?

    Here again, qRules makes this easier for you – you can write your own code, yes; or even hire a developer, but qRules just makes it a lot simpler (and cheaper!) for you. You can use the command called Insert which allows you to add a row, or any number of rows, at any position in your repeating table. The qRules User Guide which comes with the installation files should help you get started with using this command.

    4. Keep form state values out of the main data source

    One of the best practices when designing InfoPath forms is making sure that there are no fields in your main data source that don’t really store data. Anything that’s being used to control the logic in your form but doesn’t necessarily store values should go into a secondary data source such as an XML file. For example, you want to check whether the user opening the form has edit permissions. You could then have a node in your secondary XML file called “CurrentUser”. The logic in your form will populate that CurrentUser node either via an Active Directory web service or SharePoint’s UserProfileServices method, or simply via the username() function; and then can have a rule check whether the value is the same as that of the form submitter, or the approver, or what-have-you. Since the value of the current user will always change, it can go into your secondary XML data source.

    5. Submitting repeating data to a SharePoint list?

    Ok, you can use SharePoint list forms – but list forms actually have a flat data structure, i.e. non-repeating. If you want to submit multiple products in one order, the list item for that order will either keep a merged list of products, or just the first/last product which isn’t really helpful especially if you want to report on your data. The SubmitToSharePointList qRules command features the ability to submit data from an InfoPath form to the SharePoint list it has been mapped to. It also allows updating of an item in the SharePoint list from the form. The latest version even allows you to submit to different lists – so in our example, we can now keep a separate list of orders, and a separate list of products with reference the corresponding order.

    • Watch this YouTube video to learn more and see its powerful features in action
    • Here’s a blog post that has detailed steps to walk you through setting up your form to submit repeating data to list forms using the qRules command

    6. Conditional hiding disabled?

    You want to hide your Date picker control or your radio buttons, check boxes, or a hyperlink at certain conditions – surprised to find out that the “Hide this control” option is disabled? Easy fix: place the control in a section and add your conditional formatting to that.

    7. Always give your forms unique names

    You can do this using fields that you know will always be unique, but what if there are none? Yes you can concatenate the company name and the customer name, but you’re still not 100% assured that it will forever be unique. A company can have two John Smiths after all, right? So aside from concatenating field values, you can also add the current date and time by using the now() function which includes seconds in the timestamp. If you require more than that, you can use qRules’ GetFullDateTime command which returns milliseconds – now that will be sure to be unique!

    8. Unable to use Digital signatures?

    9. White space?

    You thought you’ve set everything on the canvas to lay out nicely in the browser and/or client, but the white spaces just won’t go away! Aside from making sure that you’ve set row heights, paddings and margins to zero, you also need to remove section borders. Don’t be tricked – you’ll think that all the new section controls that you add on your form (whether they be repeating or non-repeating sections) don’t have borders? They do! Turns out that by default, sections have ‘invisible’ outline borders – so update them and select ‘None’ from the border presets.

    10. Need your dropdown list box to display concatenated values?

    You’d like your dropdown list box to display the customer’s Full name but you only have the First and the Last name values separated in your data source. Of course, if you have full control of the data source, you can easily make this happen by using another field that concatenates the strings you’d like to display. Otherwise, the other option would be to manually update the .xsl file. If you export your form’s source files and inspect the XSLT for your drop-down list box in the view’s .xsl file, you’ll see something like this:

    figure5

    You can modify the last select value (which is actually the displayName) to be the concatenated formula, like so:

    figure4 

    Learn More

    Qdabra offers short video tutorials and in depth how-to hands-on-labs. Check out the following links:

  • Reporting Options for SharePoint Lists

     

    Navigate the Islands!

    blog image

    Your SharePoint lists are all set up and they are full of interesting data – but until that data is presented in an aggregated fashion, it will be pretty difficult to make it useful. Your users need to be able to compare, contrast, create ad hoc reports and assess the information. Your high level folks need dashboards, scorecards, KPIs and gauges.

    You need reporting options!

    Out-of-box Solutions

    SharePoint has some reporting options built in:

    More Flexible

    Sometimes you need to be able to visualize the data in ways that aren’t possible in a list view. More flexible options include

    Most Scalable

    Enterprise reporting solutions can help you keep up on your data even as it grows.

    Learn More

    Qdabra offers short video tutorials and in depth how-to hands-on-labs. Check out the following links:

  • Overlays in InfoPath

     

    You Can’t Do That In InfoPath!

    InfoPath makes it easy to design complex, high-quality user interfaces, but unfortunately one if its limitations is that it does not support overlay windows.  Anyone who has used a web browser is probably familiar with overlays, small windows usually programmed with jQuery that look like pop-ups but are embedded directly into the main web page. The background shading effect used with overlays could add a nice touch to a user interface, creating a sleek and modern-looking InfoPath form…that is if you were allowed to create overlays in InfoPath!

    Overlays in InfoPath: 01

    Figure 1: jQuery Overlay Example

    Never fear: in today’s blog, we’re going to look at one way to create a browser form that uses multiple views to mimic the look and feel of an overlay.

    Creating the Main View

    This technique works best on forms with a fixed tabular or grid-based layout.  Create the main view using your desired content and color scheme, making sure to put all of the content inside a single unbound section.  Here is a screenshot of the Main View in a sample form I created as a demo (scroll down to the end of the post for the link to download the template file):

     2 Overlays in InfoPathFigure 2: Main View of Sample Form

    In my sample form there are two sections:

    1. Personal Information – a non-repeating collection of fields
    2. Job History – a repeating group with multiple fields

    Here is the schema for these sections:

    3 Overlays in InfoPath

    Figure 3: Schema fields for Main View

    Creating the Overlay View

    For my sample form, I’ve decided that the overlay should appear when I want to add new entry into the Job History repeating group.  I’m going to show the overlay when the user clicks the bright blue plus sign picture button at the top right of the Job History section.

    Now when I say “show the overlay” I really mean add a rule to the plus sign button that will switch to a new view I have created called the Overlay View.

    4

    Figure 4: Adding a rule to switch to the Overlay View

    Next, choose the area that you want the overlay to appear in. Choose wisely because it will always show in the exact same area relative to the position of the other sections, so if you scroll too far it will move off the screen.  Pick a location that will be on-screen and not too far away from the button that the user will click to display the overlay.

    Once you have chosen your location, copy & paste the entire contents of the Main View into the new Overlay View. Below I have circled in red the area that I want the overlay to appear in:

    5 

    Figure 5: Main View with targeted overlay area circled in red

    Ok, now we’ve set up the rule to switch views, so let’s work on building the overlay inside the Overlay View.

    The first step is to change the color scheme for everything OUTSIDE of the targeted overlay area to be a darker, greyer shade.  You’ll need to play around with a few colors before you settle on the ones you feel are best for your particular form.  Change the background color by right-clicking outside of the form sections, selecting “View Properties”, checking the “Use a background color” checkbox, and then selecting a color from the adjacent dropdown color menu.

    6

    Figure 6: Changing the background color for the Overlay View

    Next, highlight the table cells OUTSIDE of the targeted overlay area and change their color by right-clicking, selecting “Table Properties”, clicking the down arrow next to the fill icon and selecting the desired color from the color menu.

    7

    Figure 7: Changing the colors for the rest of the sections in the Overlay View

    Change any light colored fonts to a darker grey shade and any dark colored fonts to a slightly lighter grey shade.  The goal here is to mute things so that the overlay will pop out at the user.

    You may have noticed that the sections in my sample form have rounded corners.  These are achieved by inserting image files into the table cells that mark the corners of the sections.  If you use similar image files in your own forms, you will need to edit their color outside of InfoPath in your desired image editing software.  Likewise, edit any banners or header/footer images outside of InfoPath as well.

    Finally, change all controls outside the targeted overlay area to read-only text boxes so that the data is still visible but the user can’t edit them.

    Here’s the Overlay View in my sample form after making all the changes described above.  You can’t tell from the screenshot, but the plus sign button in the Job History section has been changed to a simple image, because we don’t want it to be an active in this view.  (Alternatively you could disable the rules on the picture button, but the user would still be able to click the button and might wonder why it wasn’t doing anything.)

    8

    Figure 8: Overlay View with colors outside the targeted area changed & all fields changed to read-only text boxes.

    Creating the Overlay Section

    Now it’s time to create the overlay itself.  Recall that the function of the overlay in my sample form is to add the details for another job to the Job History repeating group.  To do this, I’m going to need some new fields that will be displayed only on the overlay.  Here’s is the schema for these new fields:

    9

    Figure 9: Schema fields for the Overlay section

    Rearrange the table rows and columns in the targeted overlay area to hold the controls for these new fields, as well as a title, cancel button and an Add button (to add the user’s entries to the Job History section, of course).

    Feel free to be a bit creative here with the layout and the color scheme.  I’ve chosen to keep things simple, re-using the light blue color from the Main View and sticking to a simple grid.

    10

    Figure 10: Completed layout for the Overlay View

    Let’s take a closer look at the buttons inside the overlay.

    The cancel “X” button in the upper right corner does two things: (1) clear anything the user may have typed into the overlay fields, and (2) switch back to the Main View.  Together these two rules create the effect of “cancelling” and “closing” the overlay.

    11

    Figure 11: Rules for the overlay cancel button

    The Add button is a bit more complicated and requires use of the qRules “Insert” and “Set Value” rule commands.  The “Insert” command is used to add a new blank entry to the Job History repeating group, and the “Set Value” command is used to set the values of the fields in that new entry to be equal to the values that the user has typed into the overlay fields.

    For more information on the qRules “Insert” and “Set Value” commands, visit this blog post.

    12 12A 12B

    Figure 12: Rules for “Insert” and “Set Value” qRules commands (Note: “Set Value” command shown only for the Company field)

    Lastly, add a rule to the “Add” button to switch back to the Main View.

    We are now finished with both the Main View and the Overlay View, and the form is ready to be published.

    Here are a few screenshots of the sample form in action:

    13 13A

    Figure 13: Screenshots from the finished sample form

     Learn More

    Try out this overlay technique yourself with the sample form template located here.

    Want to learn more about the qRules commands described above? Qdabra offers short video tutorials and in depth how-to hands-on-labs. Check out the following links:

Copyright © 2003-2019 Qdabra Software. All rights reserved.
View our Terms of Use.