Contains warning elements that specify whether a category of message is visible in the Design Checker task pane.
Usage
Element Information
|
Element type
| xsd:complexType |
|
Namespace
| xsf2 |
Elements and Attributes
Parent Elements
| Element | Description |
| solutionDefinition | Root element for the elements defined in the xsf2 namespace. Specifies new properties and features that have been added to Microsoft Office InfoPath 2007 form templates. |
Child Elements
| Element | Description |
| warning | Defines whether a category of message is visible in the Design Checker task pane. |
Attributes
None.
Definition
<xsd:element name="warnings">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="xsf2:warning" maxOccurs="unbounded" minOccurs="0" />
</xsd:sequence>
<xsd:anyAttribute processContents="skip" />
</xsd:complexType>
</xsd:element>
|
Remarks
The warnings element contains a set of warning elements that correspond to the different categories of messages that a user can make hidden or visible using the Options drop-down button in the Design Checker task pane. The value of the source attribute of a warning element corresponds to one of the message categories in the following table.
| source Attribute | Message Category |
|---|
| browsercompatibility | Browser Compatibility |
| browsweroptimization | Browser Optimization |
| import | Import |
| offline | Offline |
Note If this element or attribute is in the form definition file (.xsf), InfoPath Forms Services will ignore this setting when the form template is deployed to the server as a browser-compatible form.
Example
The following is an example of the warnings parent element with a set of warning elements.
<xsf2:warnings>
<xsf2:warning source="browsercompatibility" hidden="yes"></xsf2:warning>
<xsf2:warning source="browsweroptimization" hidden="yes"></xsf2:warning>
<xsf2:warning source="import" hidden="yes"></xsf2:warning>
<xsf2:warning source="offline" hidden="yes"></xsf2:warning>
</xsf2:warnings>
|