Formatter and table data display in the SAPUI5

Source: Internet
Author: User
Tags json

JSON data:

    var data1 = {
                "results": [
                    {"option": "Quality Certificate 1", "Selected": "0"},
                    {"option": "Quality Certificate 2", "Selected": "1"}
                ]< c5/>};
    var Omodel = new Sap.ui.model.json.JSONModel (data1);
    This.getview (). Setmodel (Omodel);

XML View display:

<table id= "_table1" items= "{path: '/results '}" visible= "true" inset= "false" >
     <columns>
        < column>
        </Column>
    </columns>

    <items>

        <ColumnListItem>
            < cells>
                <radiobutton groupname= "option" text= "{option}" selected= "{path: ' selected ', Formatter: '. Checkselectedoption '} '/>
            </cells>
        </ColumnListItem>
    </items>  
</ Table>

Whether to select the formatter code:

Checkselectedoption:function (value) {
    if (value = = "1") 
        return true;
    else
        return false;
},

Examples of Radiobuttongroup:
http://jsfiddle.net/ove1tvtj/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.