Intbox

Intbox is an input box.

Input Box

Input Box with Constraint

CSS Definition

Description

Default Values

.text

The outline of intbox

background: #FFF url( ${c:encodeURL('~./zul/img/grid/text-bg.gif')} ) repeat-x 0 0;

repeat-x scroll 0pt;

border:1px solid #7F9DB9;

. text-invalid

The outline of intbox

background: #FFF url( ${c:encodeURL('~./zul/img/grid/text-bg-invalid.gif')} ) repeat-x 0 0;

border: 1px solid #DD7870;

Customize the background of Intbox

The way to customize the background of Intbox is change color as follows.

.text{
    background: gray;    
}

Customize the constraint of Intbox

The way to customize the border of Intbox is change color as follows.

.text-invalid{
    border: 1px solid black;