Data Form Extension

Exercise: Create a Data Form Extension with a UI Model

Here is a link to the Food Bank Source Code.

In the source code for the food bank customization, we created the ability to add a food bank into the USR_FOODBANK table via the Food Bank Add Form. Below is the spec for this Add Data Form.

<AddDataFormTemplateSpec
    xmlns:c="bb_appfx_commontypes"
    ID="B103D941-F9CC-47A2-9419-6B90FF22BA15"
    Name="Food Bank Add Form"
    Description="Used for adding a new Food Bank"
    Author="Technical Training"
    RecordType="Food Bank"
    DataFormInstanceID="D580ABBD-2974-4ADB-BD8A-8CF6F76DE8E6"
    c:SecurityUIFolder="Constituent\Food Bank"
    xmlns="bb_appfx_adddataformtemplate"
    >
    <SPDataForm>
        <SaveImplementation SPName="USR_USP_DATAFORMTEMPLATE_ADD_FOOD_BANK">
            <c:CreateProcedureSQL>
                <![ CDATA[
create procedure dbo.USR_USP_DATAFORMTEMPLATE_ADD_FOOD_BANK
(
    @ID uniqueidentifier = null output,
      @CONSTITUENTID uniqueidentifier = null,
    @CHANGEAGENTID uniqueidentifier = null,
    @DESCRIPTION nvarchar(max) = '',
    @MISSIONSTATEMENT nvarchar(max) = '',
    @FOODBANKTYPECODEID uniqueidentifier = null
)
as

set nocount on;


--if @ID is null
   set @ID = @CONSTITUENTID

if @CHANGEAGENTID is null  
    exec dbo.USP_CHANGEAGENT_GETORCREATECHANGEAGENT @CHANGEAGENTID output

declare @CURRENTDATE datetime
set @CURRENTDATE = getdate()

begin try
    -- handle inserting the data
    insert into dbo.USR_FOODBANK
        (ID, CONSTITUENTID, DESCRIPTION, MISSIONSTATEMENT, FOODBANKTYPECODEID, ADDEDBYID, CHANGEDBYID, DATEADDED, DATECHANGED)
    values
        (@CONSTITUENTID, @CONSTITUENTID, @DESCRIPTION, @MISSIONSTATEMENT, @FOODBANKTYPECODEID, @CHANGEAGENTID, @CHANGEAGENTID, @CURRENTDATE, @CURRENTDATE)

   --set @ID = @CONSTITUENTID
end try

begin catch
    exec dbo.USP_RAISE_ERROR
    return 1
end catch

return 0                

] ]>
            </c:CreateProcedureSQL>
            <c:ExpectedDBExceptions>
                <c:Constraints>
                    <c:Constraint Name="FK_USR_FOODBANK_FOODBANKTYPECODEID" Field="FOODBANKTYPECODEID" Type="ForeignKey" />
                </c:Constraints>
            </c:ExpectedDBExceptions>
        </SaveImplementation>
    </SPDataForm>

    <!-- describe the context ID for this form (if applicable), which corresponds to a parameter in the SP.
    <Context ContextRecordType="Food Bank" RecordIDParameter="CONTEXTID"/> -->
    
    <c:FormMetaData FixedDialog="true" >
        <c:FormFields>
            <c:FormField FieldID="CONSTITUENTID" Caption="Constituent"  DataType="Guid" Required="true">
        <c:SearchList SearchListID="ef1da4e7-0631-49de-bd60-7d084cb7cb2b" EnableQuickFind="true">
          <c:FormFieldOverrides>
            <c:FormFieldOverride FieldID ="ONLYPRIMARYADDRESS" DefaultValueText="False"/>
          </c:FormFieldOverrides>
        </c:SearchList>
          
                
            </c:FormField >
            <c:FormField FieldID="DESCRIPTION" Caption="Description" DataType="String" Multiline="true" />
            <c:FormField FieldID="MISSIONSTATEMENT" DataType="String" Caption="Mission Statement" />
            <c:FormField FieldID="FOODBANKTYPECODEID" DataType="Guid" Caption="Food Bank Type" Required="true">
                <c:CodeTable CodeTableName="USR_FOODBANKTYPECODE" />
            </c:FormField>
        </c:FormFields>
        
        <!-- Switching over to the default WebUI instead of the Win Form UI-->
    <c:WebUIComponent>
      <c:WebUI>
        <c:DefaultWebUI/>
      </c:WebUI>
    </c:WebUIComponent>
    </c:FormMetaData>

</AddDataFormTemplateSpec>

Currently, adding food bank is a two-step process. A user first creates an organization constituent record and then uses the Food Bank Add Form to select the organization to signify that it is a food bank.

In this example we will extend the Organization Add Data Form (below) with a data from extension that includes fields to add a food bank.

Before we walk through the steps to create the data form extension, let’s take a peek at the completed exercise and define the requirements along the way.

  1. When we create an organization, we want to give the user the option to designate it as a food bank while they add the information for the organization. We want to extend the Organization Add Data Form to include a new tab with the following food bank fields:

    • Add Food Bank checkbox

    • Description text box

    • Mission Statement text box

    • Food Bank Type drop-down list box

  2. We want the addition of the food bank data to be optional. That is, if the organization is not a food bank the user can just skip the new tab and the food bank-related fields.

  3. The user can designate the organization as a food bank by selecting an Add Food Bank checkbox. This should enable the food bank fields and make the Food Bank Type field required.

  4. Saving the food bank data should add a row into the USR_FOODBANK table as well as add a user-defined constituency of "Food Bank."

  5. We want to group the Add Food Bank checkbox, Description text box, and Mission Statement text box controls within a group named General Information.

  6. We want to place the Food Bank Type drop-down list box within a group named Other.

When we are done, we will have completed a data form extension that looks like this:

When we click the Save button on the Organization Add Data Form, we are redirected to the Constituent page. We can see the new constituent record and the user-defined constituency.

Step 1 -  Create a new DataFormExtensions folder within the Blackbaud.CustomFx.FoodBank.Catalogproject.

Step 2 -  Add a new Add Data Form to the catalog project.

Before we can extend the organization Add Data Form with our custom data form, we must first create the custom data form. Right-click the new DataFormExtensions folder and select Add\New Item… from the popup menu.

Select Add Data Form Template Spec (SP) as the template and enter OrganizationFoodBankExtension.Add.xml as the XML file name.

Step 3 -  Add the header for the spec.

Add the following XML metadata for the spec. The GUID's for your ID and DataFormInstanceID attributes will differ.

<AddDataFormTemplateSpec 
    xmlns:c="bb_appfx_commontypes"
    ID="89025448-7cab-430e-8b9a-b057bf4966cb"
    Name="Food Bank Organization Extension Add Form"
    Description="Used for Adding a new Food Bank to an organization"
    Author="Technical Training"
    RecordType="Food Bank"
    DataFormInstanceID="735c77b6-bb12-4298-b76d-aa811da97584"
    c:SecurityUIFolder="Constituent\Food Bank"
    xmlns="bb_appfx_adddataformtemplate"
    >

Step 4 -  Add the Save Implementation stored procedure.

Add the following XML metadata for the stored procedure.

Notice that we use the CONSTITUENTID from the Organization Add Data Form.

Notice that we skip the INSERT to the food banktable if the @ADDFOODBANK parameter is equal to zero.

Also notice that we add the user-defined constituency:

<SPDataForm>
        <SaveImplementation SPName="USR_USP_DATAFORMTEMPLATE_ADD_ORGFOOD_BANK">
      
            <c:CreateProcedureSQL>
                <![CDATA[
CREATE procedure dbo.USR_USP_DATAFORMTEMPLATE_ADD_ORGFOOD_BANK
(
    @ID uniqueidentifier = null output,
      @CONSTITUENTID uniqueidentifier,
    @ADDFOODBANK bit = 0, 
    @CHANGEAGENTID uniqueidentifier = null,
    @DESCRIPTION nvarchar(max) = '',
    @MISSIONSTATEMENT nvarchar(max) = '',
    @FOODBANKTYPECODEID uniqueidentifier = null
)
as
set nocount on;

DECLARE @FoodBankTypeCodeCountID as uniqueidentifier
DECLARE @CURRENTDATE datetime
DECLARE @CONSTITUENCYID as uniqueidentifier

set @ID = @CONSTITUENTID

if @CHANGEAGENTID is null  
    exec dbo.USP_CHANGEAGENT_GETORCREATECHANGEAGENT @CHANGEAGENTID output

set @CURRENTDATE = getdate()

begin try

IF @ADDFOODBANK = 1
BEGIN    
    -- handle inserting the data
    insert into dbo.USR_FOODBANK
        (ID, CONSTITUENTID, DESCRIPTION, MISSIONSTATEMENT, FOODBANKTYPECODEID, ADDEDBYID, CHANGEDBYID, DATEADDED, DATECHANGED)
    values
        (@CONSTITUENTID, @CONSTITUENTID, @DESCRIPTION, @MISSIONSTATEMENT, @FOODBANKTYPECODEID, @CHANGEAGENTID, @CHANGEAGENTID, @CURRENTDATE, @CURRENTDATE)
    
   -- MAKE SURE WE HAVE A FOOD BANK USER DEFINED CONSTITUENCY IN THE CONSTITUENCYCODE  TABLE
    SELECT @FoodBankTypeCodeCountID = ID
    FROM CONSTITUENCYCODE
    WHERE DESCRIPTION = 'Food Bank'
    
    -- IF WE DONT,  ADD ONE TO THE CONSTITUENCYCODE  TABLE
   IF @FoodBankTypeCodeCountID IS NULL
   BEGIN
        SET @FoodBankTypeCodeCountID = NEWID()
        EXEC dbo.[USP_CONSTITUENCYCODE_CREATEENTRY] @DESCRIPTION=N'Food Bank',@ACTIVE=1,@CHANGEAGENTID=@CHANGEAGENTID
   END
 
   -- ADD THE NEW ORGANIZATION/CONSTITUENT TO THE USER DEFINED CONSTITUENCY
   EXEC  dbo.USP_DATAFORMTEMPLATE_ADD_CONSTITUENCY  @CONSTITUENCYID output, @CHANGEAGENTID, @CONSTITUENTID, @FoodBankTypeCodeCountID
      
END

end try

begin catch
    exec dbo.USP_RAISE_ERROR
    return 1
end catch

return 0

] ]>
            </c:CreateProcedureSQL>
            <c:ExpectedDBExceptions>
                <c:Constraints>
                    <c:Constraint Name="FK_USR_FOODBANK_FOODBANKTYPECODEID" Field="FOODBANKTYPECODEID" Type="ForeignKey" />
                </c:Constraints>
            </c:ExpectedDBExceptions>
        </SaveImplementation>
    </SPDataForm>

Step 5 -  Add the Context and FormMetaData.

Add the following XML metadata for the context and the form meta data.

Notice that we use the <c:DefaultWebUI/> to start with. This will change when we run the UI Model wizard in future steps.

Also notice that we use <c:FieldGroups> to group our form fields together on the user interface.

<!-- describe the context ID for this form (if applicable), which corresponds to a parameter in the SP.-->
  <Context ContextRecordType="Constituent" RecordIDParameter="CONSTITUENTID" />
    
    <c:FormMetaData FixedDialog="true">
        <c:FormFields>
      <c:FormField FieldID="ADDFOODBANK" Caption="Add Food Bank" DataType="Boolean" />
            <c:FormField FieldID="DESCRIPTION" Caption="Description" DataType="String" Multiline="true" />
            <c:FormField FieldID="MISSIONSTATEMENT" DataType="String" Caption="Mission Statement" Multiline="true" />
            <c:FormField FieldID="FOODBANKTYPECODEID" DataType="Guid" Caption="Food Bank Type">
                <c:CodeTable CodeTableName="USR_FOODBANKTYPECODE" />
            </c:FormField>
        </c:FormFields>

   <c:WebUIComponent>
      <c:WebUI>
        <c:DefaultWebUI/>
      </c:WebUI>
    </c:WebUIComponent>
<c:FieldGroups>
      <c:FieldGroup ID="GENERALINFORMATIONGROUP"  Caption="General Information">
        <c:Fields>
          <c:Field>ADDFOODBANK</c:Field>
          <c:Field>DESCRIPTION</c:Field>
          <c:Field>MISSIONSTATEMENT</c:Field>
        </c:Fields>
      </c:FieldGroup>
      <c:FieldGroup ID="OTHERGROUP"  Caption="Other">
        <c:Fields>
          <c:Field>FOODBANKTYPECODEID</c:Field>
        </c:Fields>
      </c:FieldGroup>
    </c:FieldGroups>

 </c:FormMetaData>

Step 6 -  Add the DataFormExtension element before the AddDataFormTemplateSpec element.

The value for the DataFormInstanceIDattribute points to the OrganizationAdd Data Form.

Notice that we render our data form as a new tab on the Organization Add Data Form via RenderStyle="Tab". Optionally, we could set the RenderStyle="AfterParent" to display of our fields at the bottom of the Organization Add Data Form

<!-- Extending the Organization Add Data Form -->
  <c:DataFormExtension DataFormInstanceID="ca3ed110-a5f0-4b5b-8eb7-0616e0a82e8e"  RenderStyle="Tab"  TabCaption="Food Bank"/>
</AddDataFormTemplateSpec>

Step 7 -  Load the spec into the database.

Step 8 -  Test our new the Data Form Extension and the default web user interface.

Navigate to the Organization functional area and click the Add an organization task. You should see the Organization Add Data Form with a Food Bank tab that includes our custom data form.

You can see that the default web user interface provides formatting for the form header and the grouping of the fields on the data form.

Step 9 -  Create a UI Model for our custom Data Form using the UI Model Wizard.

We now have to create a UI Model for our data form to fulfill the following requirements:

Right-click the Blackbaud.CustomFx.FoodBank.UIModel project.

Select Add/New Item… from the popup menu.

Select the UI Model Wizard template. Keep the default name for the name of the XML file.

The UI Model Wizard appears.

Select OrganizationFoodBankExtension.Add.xml as the spec file.

Select the Generate Html for the model checkbox.

Accept the default HTML file name and the default HTML folder location

Select the Generate model from the database checkbox.

Enter your database server as the database Server name.

Enter your Infinity database name as the Database name

The wizard adds the following files to the UI Model assembly project:

The wizard alters the OrganizationFoodBankExtension.Add.xml Data Form Spec in the catalog project. Check out our WebUIComponent element within the spec. It changed to reference our new UI model assembly and class.

Step 10 -  Add behavior code.

Within the UI Model assembly project, open the FoodBankOrganizationExtensionAddFormUIModel.vb class and add the following code:

Private Sub EvaluateControls()
  Dim EnableFoodBankFields As Boolean = False

  EnableFoodBankFields = Me.ADDFOODBANK.Value
  If EnableFoodBankFields = False Then
    Me.FOODBANKTYPECODEID.Required = False
  Else
    Me.FOODBANKTYPECODEID.Required = True
  End If

  Me.DESCRIPTION.Enabled = EnableFoodBankFields
  Me.MISSIONSTATEMENT.Enabled = EnableFoodBankFields
  Me.FOODBANKTYPECODEID.Enabled = EnableFoodBankFields
End Sub

The EvaluateControls() sub is called when the new data form opens and when the Add Food Bank checkbox is selected. The sub determines if the drop-down list box should be required and enables or disable the controls.

Step 11 -  Reload the Data Form Spec, build and deploy the UI Model Assembly, deploy the HTML file, and check out our new UI behavior.

Within Blackbaud CRM, close the Organization Add Data Form if it is open.

Reload the OrganizationFoodBankExtension.Add.xml spec to account for the updated WebUIComponent element that points to our new UI model.

Rebuild the UI Model assembly project.

Copy the FoodBankOrganizationExtensionAddForm.html file to the vroot\browser\htmlforms\custom\blackbaud.customfx.foodbank folder.

Reopen the Organization Add Data Form and test the new behavior. When you select and clear the checkbox, you should see the other fields switch from enabled to disabled and the drop-down list box switch from required to not required.