Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This element is used to display radio button selectors on the page.

...

NameDescriptionValue
id

Unique Identifier

anyAny
name  The radio button nameAny
visiblemodesThe modes the button should be visible.A comma-separated list of the modes read / new / edit
visibilityconditionsThe conditions that should be met in order to display the radio button.'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
readonlyIf is true then radio button cannot change value.true,false
readonlyconditions

The conditions that should be met in order to display

the radio button in read only mode.

'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
datapathThe data path field nameNeeds to correspond to the CRMDO object field.
datatypeThe type of datapath fieldjava.lang.Integer, java.lang.String,...
refreshThe page parts that should be refreshed when the radio button value change.

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

  type 

       The type 'singleline' can be used to show all options in one line, 

instead of one per row. 

 singleline 
lookuptypeThe type of lookupfixed, dataset, ejb
lookupnameThe dataset name if lookuptype is equals to dataset

the file path under the folder 'Crm/WebContent/pages/search'

alwayseditableradio buttons can be defined as always editabletrue, false
reload

If is set to true then means that radio button will be called on every refresh of page. 

For lookuptype: dataset, ejb

true, false
options

Defines the options of radio button.

For lookuptype: fixed

 option1:option_label1;option2:option_label2;option3:option_label3

valueDefines the current value of radio button'[[pagefunction, datatype, datapath ]]'
defaultvaluethe default value to be assign on datapath.any
onload

Defines the function call triggered to load radio button.

For lookuptype: ejb

<function>…</function>
onchangeDefines the function call(s) triggered when radio button value changed.<functions>…</functions>

...

Example

...

Expand

 

 

...

titleFixed

...

Radio button - linenumbers

Image Added

Code Block
themeEclipse
languagexml
title
Fixed
true
<radiobutton>
    <reload>true</reload>
    <lookuptype>fixed</lookuptype>
    <datapath>contactInformationOption</datapath>
    <datatype>alias</datatype>
    <defaultvalue>NEW_CUSTOMER</defaultvalue>
    <options>NEW_CUSTOMER:New Customer;EXISTING_CUSTOMER:Existing Customer</options>
    <refresh>component,false:false:null:customerInformation;component,false:false:null:accountInformation;component,false:false:null:billingAddress</refresh>
    <onchange>
                <functions>
            <function>
                <type>ejb</type>
                <classname>ejb/CRMUISubscriptionAction</classname>
                <functionname>constructContact</functionname>
                <resultaction>fieldreplace</resultaction>
                <datapath>contactInformation</datapath>
                <parameters>
                </parameters>
            </function>
        </functions>
    </onchange>
</radiobutton> 

...

Expand

 

Radio button - Ejb lookup

Image Removed

Code Block
true
titleRadio button - ejb
linenumberstitleEJB Lookup

Image Added

Code Block
themeEclipse
languagexml
titleEJB Lookup
<radiobutton>
    <id>rdbCompositionMethod</id>
    <visiblemodes>edit,new,read</visiblemodes>
    <datapath>type/compositionMethod</datapath>
    <datatype>enum</datatype>
    <classname>com.crm.dataobject.products.CompositionMethod</classname>
    <lookuptype>ejb</lookuptype>
    <defaultvalue>FLAT</defaultvalue>
    <reload>true</reload>
    <readonly>true</readonly>
    <refresh>page</refresh>
    <onload>
        <type>ejb</type>
        <classname>ejb/CRMUIProductType</classname>
        <functionname>getCompositionMethodOptions</functionname>
    </onload>
    <onchange>
        <functions>
            <function>
                <type>staticjs</type>
                <functionname>voidFunc</functionname>
            </function>
        </functions>
    </onchange>
</radiobutton>
Expand

 

Radio button - Dataset lookup

Image Removed

Code Block
true
titleRadio button - dataset
linenumberstitleSearch File Lookup

Image Added

Code Block
themeEclipse
languagexml
titleSearch File Lookup
<radiobutton>
    <id>rdbCompositionMethod</id>
    <visiblemodes>edit,new,read</visiblemodes>      
    <type></type>
    <lookuptype>dataset</lookuptype>
    <lookupname>products.loadbrands;prodbrandid;prodbrandname</lookupname>
    <datapath>brand</datapath>    
    <datapathid>id</datapathid>
    <reload>true</reload>
    <readonly>true</readonly>
    <refresh>page</refresh>
    <onchange>
        <functions>
            <function>
                <type>staticjs</type>
                <functionname>voidFunc</functionname>
            </function>
        </functions>
    </onchange>
</radiobutton>