Skip to end of banner
Go to start of banner

Textbox

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 12 Next »

Textbox

This element is used to display a text box on the page.

Attributes

NameDescriptionValue
id

Unique Identifier.

Any
nameThe textbox name.Any
visiblemodesThe modes the textbox should be visible.A comma-separated list of the modes (read, new, edit)
visibilityconditionsThe conditions that should be met in order to display the textbox.'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
readonlyIf true then the textbox value cannot be changed.true or false
readonlyconditions

The conditions that should be met in order to display the textbox in read only mode.

'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
datapathThe data path field name.Needs to correspond to the CRMDO object field
datatypeThe type of datapath field.alias, java.lang.Integer, java.lang.String, ...
refreshThe parts of the page that should be refreshed when the textbox value is changed.

page

mainmenu

main

details

tab,tabID

component,is_on_tab:is_on_menu:tabID:componentID

element,is_on_tab:is_on_menu:tabid:componentID:elementID

section,sectionID

area,areaID

dataformattingSpecific formatting of data.

DIGITS:3: number of decimal digits displayed for float fields

DATEONLY: show date only of a date-time field

TIMEONLY: show time only of a date-time field

DURATIONDAYS: show duration in days of a special time duration float field

DURATIONHOURS: show duration in hours of a special time duration float field

DURATIONMINUTES: show duration in minutes of a special time duration float

sizeThe size of the textbox.

smaller(5 characters), small(8 characters), normal(16 characters), large(32 characters)

urlIf the URL is specified then the text in read mode is a link.Any
onchangeDefines the function call(s) triggered when the textbox value is changed.<functions>…</functions>

Example

 Textbox

Textbox
<textbox>
    <id>txtPayAmtValue</id>
    <datapath>totalAmount</datapath>
    <size>smaller</size>
    <dataformatting>DIGITS:2</dataformatting>
    <datatype>java.math.BigDecimal</datatype>
    <refresh>page</refresh>
    <onchange>
        <functions>
            <function>
                <type>ejb</type>
                <classname>ejb/CRMUIPayment</classname>
                <functionname>calculdateRoundedTotalAmount</functionname>
                <resultaction>replace</resultaction>
                <datatype>root</datatype>                        
                <parameters>
                    <parameter>
                        <value>[[getDTO]]</value>
                        <datatype>java.lang.Object</datatype>
                    </parameter>    
                </parameters>
            </function>
        </functions>
    </onchange>
</textbox> 
 Textbox With Alias

Textbox With Alias
<textbox>
        <id>txtIssuedOnAlias</id>
        <name>Issued On</id>    
        <value>[[notNull,java.lang.String,date1,java.lang.String,date2]]</value>
        <datapath>issuedOn</datapath>
        <datatype>alias</datatype>
</textbox>

 Textbox With URL

Textbox With URL
<textbox>
    <id>txtType</id>
    <datapath>type</datapath>
    <url>page.do?xml=subscriptions/subscriptionServices&amp;act=summary</url>
</textbox>
  • No labels