Child pages
  • TITLEJUSTIFICATION
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

Refresh page Apr 19, 2024 19:23

Supported Clients
SmartClient WebClient NGClient

Constants Summary
Number CENTER Position title text in the center of the border line.
Number DEFAULT Default justification for the title text
Number LEADING Position title text at the left side of the border line for left to right orientation, at the right side of the border line for right to left orientation.
Number LEFT Position title text at the left side of the border line.
Number RIGHT Position title text at the right side of the border line.
Number TRAILING Position title text at the right side of the border line for left to right orientation, at the left side of the border line for right to left orientation.

Constants Details

CENTER

Position title text in the center of the border line.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.CENTER,SM_TITLEPOSITION.TOP);
 

DEFAULT

Default justification for the title text

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.TOP);
 

LEADING

Position title text at the left side of the border line for left to right orientation, at the right side of the border line for right to left orientation.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.LEADING,SM_TITLEPOSITION.TOP);
 

LEFT

Position title text at the left side of the border line.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.LEFT,SM_TITLEPOSITION.TOP);
 

RIGHT

Position title text at the right side of the border line.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.RIGHT,SM_TITLEPOSITION.TOP);
 

TRAILING

Position title text at the right side of the border line for left to right orientation, at the left side of the border line for right to left orientation.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.TRAILING,SM_TITLEPOSITION.TOP);
 

  • No labels