cancel
Showing results for 
Search instead for 
Did you mean: 

Difference in Form and SimpleForm tag

0 Kudos

Hi,

If we use Simple form tag then we can use Label and Input tag but when we use Form tag we cannot use Label and form tag . The IDE gives error.

Both Simpleform and Form extends same class sap.ui.core.Control .

Also Label and Input is not present in the SimpleForm details page.

Can someone explain me the reason or how they are linked.

    <f:SimpleForm editable="true"
                  title="Employee Details">
            <Label text="Employee No." />
            <Input id="Emp_no"  />
    </f:SimpleForm>


    <f:Form editable="true"
                  title="Employee Details">
            <Label text="Employee No." />
            <Input id="Emp_no1"  />
    </f:Form>

View Entire Topic
Tri
Participant

Hi vishesh1986_2482,

SimpleForm is a way to simplify Form.

And the syntax you're using in Form is incorrect.

You could check the sample code here.

Regards,

Minh