I'm starting on some of my first InfoPath forms. I have a three drop down lists (Global Function, Major Task, and Subtask) which need to query a SQL database and filter their data based on the selected value in the drop down list before it.
What I've Done So Far
I've already added Data Connections (for each of the tables & corresponding drop down list) which simply query the database for all the records in a table. Each connection is set to "Store a copy of the data in the form template" for Offline Mode.
Then in the Drop-Down List Box Properties, I've set the List box choices to "Get choices from an external data source" and setup the Entries field to select the columns for the appropriate table / drop-down list combination.
However, when I add a filter to the data and try to preview the form, the data in the "cascaded" drop down list never changes. It still has ALL of the records.
So then I tried to add a new Rule for one of the cascading drop downs. For example, I created a new rule for the
Major Taskdrop down and set it up as follows:- Condition to
Global Function is not blank - Rule type
Action - Run these actions:
- Query using a data connection: Major Tasks (which just gets ALL records)
I don't see anywhere in the Rule / Action to filter the data.
- Condition to
EDIT I've just tried a new Data Connection which has all three tables (
GlobalFunctions,MajorTasks, andSubtasks) that correctly setup the relations (i.e. GlobalFunctions.Id = MajorTasks.GlobalFunction). Then I set the drop down lists' data source to this new connection. However, this too does not filter the data at all. Their entries and values are as follows:- Global Function:
- Entries:
/dfs:myFields/dfs:dataFields/d_1:GlobalFunctions - Filter:
<None> - Value:
@Id - Display name:
@Summary
- Entries:
- Major task:
- Entries:
/dfs:myFields/dfs:dataFields/d_1:GlobalFunctions/d_1:MajorTasks - Filter:
GlobalFunction = Id - Value:
@Id - Display name:
@Summary
- Entries:
- Subtask:
- Entries:
/dfs:myFields/dfs:dataFields/d_1:GlobalFunctions/d_1:MajorTasks/d_1:SubTasks - Filter:
MajorTask = Id - Value:
@Id - Display name:
@Summary
- Entries:
- Global Function:
Restrictions
- I can't have any code behind (because it won't work in the browser right?)
- The form must be able to be filled out on the Web or on a local machine (a saved copy on a workstation)
- Should still work when there is no connection to the SQL Database
Question
How do I implement multiple cascading drop-down lists in InfoPath 2010 with data connections to a MS SQL Database that can work in the browser and using InfoPath Filler (the latter of which may not have a connection to the database).
SQL Tables
Here's what the tables look like:
CREATE TABLE GlobalFunctions (
Id SMALLINT NOT NULL IDENTITY(1,1),
Summary varchar(MAX) NOT NULL UNIQUE,
PRIMARY KEY (Id)
);
CREATE TABLE MajorTasks (
Id SMALLINT NOT NULL IDENTITY(1,1),
Summary varchar(MAX) NOT NULL UNIQUE,
GlobalFunction SMALLINT NOT NULL,
PRIMARY KEY (Id),
FOREIGN KEY (GlobalFunction) REFERENCES GlobalFunctions(Id)
);
CREATE TABLE SubTasks (
Id SMALLINT NOT NULL IDENTITY(1,1),
Summary varchar(MAX) NOT NULL UNIQUE,
MajorTask SMALLINT NOT NULL,
PRIMARY KEY (Id),
FOREIGN KEY (MajorTask) REFERENCES SubTasks(Id)
);