Hitachi

JP1 Version 12 JP1/Navigation Platform Content Editing Guide


5.7.3 Items in the Attribute Settings window (Automatic Operation Window URL Creation Plugin part)

Figure 5‒9: Attribute Settings window (displayed from Automatic Operation Window URL Creation Plugin part)

[Figure]

The following describes the items in the Attribute Settings window.

Organization of this subsection

(1) Anchor String text box

Enter the character string to display as the anchor text for the URL. The default is Hyperlink. You must enter an anchor string. An error occurs in the following circumstances:

(2) Display the Task Details Window. radio button

Specify whether to display the JP1/AO Task Details dialog box.

When this radio button is selected, the CSS for Task Details Window text box is displayed.

(3) Displays the window to execute the service. radio button

Specify whether to display the JP1/AO Submit Service dialog box.

When this radio button is selected, the property settings area appears. When cleared, the property settings area disappears and any property information you had set in the area is lost.

(4) Display the Main Window. radio button

Specify whether to display the main window of JP1/AO.

(5) Service group name text box

Specify the service group name of the JP1/AO service using a maximum of 1,024 characters.

When linking with a version of JP1/AO earlier than 11-00, the service group name is equivalent to the resource group name. You cannot use the following characters:

(6) Service name text box

Specify the service name of the JP1/AO service using a maximum of 1,024 characters. The service name cannot contain the following characters:

(7) Property settings area

This area appears when the Displays the window to execute the service. radio button is selected.

(8) CSS for Task Details Window text box

To customize the CSS style of the following task information items displayed in a JP1/AO window that shows the task status, enter a CSS style for the display item to be customized. The entered CSS style must not exceed 1,024 characters.

#: This task information item is not shown when the task status is Waiting.

The following table describes the displayed entries of the task information whose CSS style is customizable, and the corresponding CSS classes to be used.

Task information (label name)

Displayed entries

CSS class

Task start date and time

Display frame

ucnp_jp1ao_task_info_start_time

Label name

ucnp_jp1ao_task_info_start_time_label

Output information

ucnp_jp1ao_task_info_start_time_value

Task status

Display frame

ucnp_jp1ao_task_info_task_status

Label name

ucnp_jp1ao_task_info_task_status_label

Output information

ucnp_jp1ao_task_info_task_status_value

Failed

ucnp_jp1ao_task_info_task_status_failed

Completed

ucnp_jp1ao_task_info_task_status_completed

Canceled

ucnp_jp1ao_task_info_task_status_canceled

Being stopped

ucnp_jp1ao_task_info_task_status_inProgressTerminating

Abnormality detected

ucnp_jp1ao_task_info_task_status_inProgressWithError

Waiting for response

ucnp_jp1ao_task_info_task_status_waitingForInput

In progress

ucnp_jp1ao_task_info_task_status_inProgress

Suspended

ucnp_jp1ao_task_info_task_status_suspended

Waiting

ucnp_jp1ao_task_info_task_status_waiting

Long Running

ucnp_jp1ao_task_info_task_status_longRunning

Task ID

Display frame

ucnp_jp1ao_task_info_task_task_id

Label name

ucnp_jp1ao_task_info_task_task_id_label

Output information

ucnp_jp1ao_task_info_task_task_id_value

(Automatically updated every 5 seconds.)

Display frame

ucnp_jp1ao_task_info_task_refresh

In a JP1/AO window that shows the task status, the following CSS styles are displayed by default:

// Specify a font size of 18 px, a font weight of bold, and no padding for characters describing the task status.
div.ucnp_jp1ao_task_info_task_status_value * {
  font-size: 18px;
  font-weight: bold;
  padding: 0px;
}
// Specify blue as the font color to be used when the task ends successfully.
div.ucnp_jp1ao_task_info_task_status_completed {
  color: blue;
}
// Specify red as the font color to be used when the task ends abnormally.
div.ucnp_jp1ao_task_info_task_status_failed {
  color: red;
}

The following is an example of how to specify a CSS style:

div.ucnp_jp1ao_task_info_task_status_failed{font-size: 50px;}