The Css tab allows you to add your own custom Css to style the form. To apply a certain style only to some form elements, you can use a Css selector. The JavaScript tab lets you use the library jQuery. This library makes use of Css selectors with some additions. That means that you can use Css selectors to access elements even when using JavaScript.

See the help pages for the JavaScript tab for further details on jQuery.

See the help pages for the Css tab for further details on Css.

This page gives an overview of selectors in general; and which special selectors you can use for forms created with Xima® Formcycle.

Attribute selectors during form creation

Attribut selector: name

You often need to access a certain form element by its name. To do so you can use the following name selector:

$("[name='tfMail']") // via jQuery (JavaScript tab)
[name="tfMail"] { /* via CSS (CSS tab)*/
 color: #DDD;
}

The value of the attribute name corresponds to the name of the form element you wish to select. That is, the name you entered in the base settings section of the properties panel of the Xima® Formcycle Designer.

These name selectors are a special type of attribute selectors. Attribute selectors offer a way to select HTML element by any attribute or attribute value. HTML elements may have any number of attributes:

<input id="xi-tf-1" class="XItem XTextField" name="tfMail" value="demo@example.com" data-count="9">

You can now select an element by specifying which attribute it should have or what the value one of its attributes should be. An attribute selector consists of two parts and always looks like this:

[key="value"]
key
Name of the attribute. Only elements which have got such an attribute are selected.
value
Value of the attribute. Only elements which have the specified attribute set to this value are selected.

That is, to select all elements that have got an attribute named value (irrespective of the value of this attribute), use [value]. To select only  the subset of those elements that have the value attribute set to demo, use [value="demo"].

Attribute selector: xn

Each form element is put inside a container element. This container consists of the actual form element and additional elements, such as the label for the form element. In case you want to select the container element, use an attribute selector for the attribute xn (=xima-name) instead of name.

$("[xn='tfMail']"); // via jQuery (JavaScript tab)
[xn="tfMail"] { /* via CSS (CSS tab)*/
 font-weight: 600;
}

Additional attribut selectors

// Select all input fields of type "text"
$("input[type='text']")
// Select all images with an "alt" attribute
$("img[alt]")

It is also possible to select those element with an attribute value that ends on a certain expression. To do so, use the operator  $= instead of the equal sign =.

// All links, where attribute "href" ends on ".pdf"
$("a[href$='.pdf']")

Class selectors

HTML defines a special attribute named  class. Often this is also referred to as a Css class. This attribute lets you specify one or multiple classes, separated by a space. Within Css, that lets you apply certain styles to all elements with a given class. With JavaScript, you can apply a certain feature to all elements of a given class. For example, all form elements generated by Xima® Formcycle  have always got the class XItem as well as an additional class that depends on the type of the element, such as XTextField or XUpload.

Classes are used pretty often. There exists a special selector for classes that makes it easier to select elements by their classes. To select all elements with a particular class, use a selector that consists of a period, followed by the name of the class. To illustrate, a simple HTML page could look like this:

<input class="XItem XTextField">
<select class="XItem XSelect">
  <option value="">Please select</option>
  <option value="1">Option 1</option>
  <option value="2">Option 2</option>
</select>

Now you can access these elements with selectors:

/* All elements with the class XItem */
.XItem {
 font-size: 20px; /* Set font size to 20 pixels*/
}

/* Select only input fields (class XTextField) */
.XTextField {
 color: blue; /* Set font color to blue */
}

Working with selected elements

Once you have select an element, you can use one of the many functions offered by jQuery and Xima® Formcycle to edit their values or modify them in other interesting ways.

// Hide all input fields
$("input[type='text']").visible(false)

// Mark the element with the name "tfZip" as a required field
$("[name='tfZip']").setRequired(true)

Generic JavaScript functionality

Input fields are prefilled with data from the user that is currently signed in. The user data is read from the object XFC_METADATA.currentUser. The attribute data-user on the input fields controls which property is taken.

The Xima® Formcycle Designer lets you add additional classes and custom attributes to a form field. You could write a certain JavaScript feature and apply it to all elements with a particular class or attribute. Then anybody can choose which elements that functionality should be applied by adding the class or attribute in the Xima® Formcycle Designer. For example:

for (const element of $("[data-user]")) {
 const prop = element.dataset.user;
 const value = XFC_METADATA.currentUser[prop];
 if (value && !element.value) {
    element.value = value;
  }
}
$("[data-user]").each(function(_, element) {
 var prop = $(element).data("user");
 var value = XFC_METADATA.currentUser[prop];
 if (value && !element.value) {
    element.value = value;
  }
});

An input field gets the attribute data-user. It is set to a value such as email or forename. The JavaScript from above then checks whether the currently signed in user has got the specified property (email address, first name etc.). If they do, the input field is prefilled with that value. This way you only need to write a JavaScript feature once. If you upload the JavaScript file as client resource, it is available to all forms.

Form element selectors

The following selectors are often used when working with Xima® Formcycle forms.

SelectorDescriptionExample (jQuery / CSS)
FORM.xm-formSelects the entire form.$('FORM.xm-form')


FORM.xm-form {
 font-family: Arial;
}
.classSelects all elements with the given class. For a list of form element classes, see below.$('.XPage')


.XPage {
 background-color: #EEE;
}
.required-starSelects all elements that represent the small red star that marks form fields as required fields.$('.required-star')


.required-star {
 color: red;
}
.xm-item-divEach Formularelement is placed inside a container element. This container element has got the class xm-item-div. The container consists of the actual form elements (<input>, <select> etc.) and additional elements such as the label of the form field. An
input field, for example, consists of a label element and an input element.
$('[.xm-item-div]')


.xm-item-div {
 font-size: 1.2em;
}
.C<KLASSE>As mentioned, all form elements are put inside a container element. Each form element has got a class depending on its type, such as /XInputText. The container element then gets the class, prefixed with a C (=container), such as CXInputText. This selector lets you select all containers with form elements of a particular type. See below for a list of classes.$('[.CXTextField]')
$('[.CXCheckbox]')
$('[.CXImage]')



.CXCheckbox label {
 color: #aaa;
}
.xm-form-rowWhen you palce multiple form elements next to each other, they are placed inside a container element with the class xm-form-row.$('[.xm-form-row]')


.xm-form-row {
 border-style: solid;
}
nameSelects an element with a particular name. This works for all elements, event containers and fieldsets. You should not use this selector for elements that are repeatable. When an element is repeated, an index is added to the name. Instead, use the attribute org_name to select all repeated elements with that name.$('[name=element]')


[name="tfName"]{
 font-weight: 700;
}
org_nameWhen an element is repeatable, each dynamically created elements receives an additional attribute: org_name. The org_name is always set to the original name of the element, while an index is added to the name attribute.$('[org_name=tf1]')


[org_name="tfMail"] {
 margin: 2px;
}
xnSelector the container of a Formularelements with the given name. Each form element is placed inside a container that also contains additional elements such as the label.$("[xn='tfPhone']")


[xn="XTextArea"] {
 font-family: sans-serif;
}
cnSelects all containers with form elements of a particular type. See below for a list of classes for each form element type.$('[cn=XPage]')


[cn=XTextField]{
 font-family: serif;
}

List of classes

Each type of form elements has got a special Css class that is used in the form. You can use this class to select all elements of a certain type.

SelectorDescriptionExample
XHeaderSelects the header element of the form. The header element is always visible at the top of the form, irrespective of which page is currently shown.$(".XHeader']")
XFooterSelects the footer element of the form. The footer element is always visible at the bottom of the form, irrespective of which page is currently shown.$(".XFooter']")
$("[cn='XPage']"){{/code}}
XPageSelects all pages.$(".XPage']")
$("[cn='XPage']")
XContainerSelects all containers.$(".XContainer']")
$("[cn='XContainer']")
XFieldSetSelects all fieldsets.$(".XFieldSet")
$("[cn='XFieldSet']")
XSpanSelects all texts.$(".XSpan")
$("[cn='XSpan']")
XTextAreaSelects all text areas.$(".XTextArea")
$("[cn='XTextArea']")
XTextFieldSelects all input fields.$(".XTextField")
$("[cn='XTextField']")
XCheckboxSelects all form elements of type checkbox.$(".XCheckbox")
$("[cn='XCheckbox']")
XSelectSelects all selection elements.$(".XSelect")
$("[cn='XSelect']")
XLineSelects all lines.$(".XLine")
$("[cn='XLine']")
XImageSelects all images.$(".XImage")
$("[cn='XImage']")
XSpacerSelects all spacing elements.$(".XSpacer")
$("[cn='XSpacer']")
XUploadSelects all upload elements.$(".XUpload")
$("[cn='XUpload']")
XButtonListSelects all buttons.$(".XButtonList")
$("[cn='XButtonList']")
XDropDownSelects the SELECT element of a select form field (XSelect), when its display mode is set to drop down list.$(".XDropDown")
XListSelects the SELECT element of a select form field (XSelect), when its display mode is set to inline list of options.$(".XList")
XCheckboxAdditionally, this also selects the container DIV elements of select form fields (XSelect), when their display mode is set to checkboxes.$(".XCheckbox")
XRadioSelects the container DIV element with all radio buttons of a select form field (XSelect), when its display mode is set to radio buttons.$(".XRadio")
CXTableSelects the container DIV element with all questions of a select form field (XSelect), when its display mode is set to questionnaire.$(".CXTable")
Tags:
Copyright 2000-2024