<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: SimpleFormLayout.ColumnLayout not usable in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaa-p/716786#M197609</link>
    <description>&lt;P&gt;I had the same issue. I do not believe that they support the ColumnLayout any more (???) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, my  goal was to get two columns in the output. If that is also your goal, (???) then   I ended up using the ResponsiveGridLayout. I had to split the columns myself by adding a form:FormContainer around each column.&lt;/P&gt;&lt;P&gt;The ResponsiveGridLayout will automatically split Containers into 1 or 2 or 3,..columns if there is room. I already had the column (container) labels setup from previous work and so this did not bother me overly much. Although I see the concern if you do no already have the inputs grouped.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form:Form app:Delete="1" app:Insert="1" app:Update="1" class="editableForm" editable="true" id="idForm"&amp;gt;
    &amp;lt;form:layout&amp;gt;
        &amp;lt;form:ResponsiveGridLayout adjustLabelSpan="false" 
             columnsL="2" 
             columnsM="2" 
             columnsXL="2" 
             emptySpanL="0" 
             emptySpanM="0" 
             emptySpanS="0" 
             emptySpanXL="0" 
             labelSpanL="4" 
             labelSpanM="12" 
             labelSpanS="12" 
             labelSpanXL="4" 
             singleContainerFullSize="false"/&amp;gt;
	&amp;lt;/form:layout&amp;gt;
	&amp;lt;form:FormContainer title="Column 1"&amp;gt;
            &amp;lt;form:FormElement&amp;gt;
	        &amp;lt;form:label&amp;gt;
	            &amp;lt;smartField:SmartLabel labelFor="id___projWBSCode"/&amp;gt;
	        &amp;lt;/form:label&amp;gt;
	        &amp;lt;smartField:SmartField id="id___projWBSCode" suggest="suggest" value="{projWBSCode}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
	    &amp;lt;form:FormElement&amp;gt;
		&amp;lt;form:label&amp;gt;
			&amp;lt;smartField:SmartLabel labelFor="id___projName"/&amp;gt;
		&amp;lt;/form:label&amp;gt;
		&amp;lt;smartField:SmartField id="id___projName" suggest="suggest" value="{projName}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
        &amp;lt;/form:FormContainer&amp;gt;
        &amp;lt;form:FormContainer title="Column 2"&amp;gt;
            &amp;lt;form:FormElement&amp;gt;
	        &amp;lt;form:label&amp;gt;
	            &amp;lt;smartField:SmartLabel labelFor="id___projWBSCode1"/&amp;gt;
	        &amp;lt;/form:label&amp;gt;
	        &amp;lt;smartField:SmartField id="id___projWBSCode1" suggest="suggest" value="{projWBSCode}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
	    &amp;lt;form:FormElement&amp;gt;
		&amp;lt;form:label&amp;gt;
			&amp;lt;smartField:SmartLabel labelFor="id___projName1"/&amp;gt;
		&amp;lt;/form:label&amp;gt;
		&amp;lt;smartField:SmartField id="id___projName1" suggest="suggest" value="{projName}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
        &amp;lt;/form:FormContainer&amp;gt;
&amp;lt;/form:Form&amp;gt;
		
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 24 Oct 2018 13:58:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2018-10-24T13:58:11Z</dc:date>
    <item>
      <title>SimpleFormLayout.ColumnLayout not usable</title>
      <link>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaq-p/716785</link>
      <description>&lt;P&gt;In an XML view of a SAPUI5 app, I am defining a sap.ui.form.SimpleForm. I am using SAP Web IDE.&lt;/P&gt;
  &lt;P&gt;Within the declaration of the SimpleForm, when I define layout="ColumnLayout", WebIDE gives me a semantic error, stating that the property value is incorrect. Each of the 3 other SimpleFormLayouts works without error.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/236705-column-layout-semantic-error.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/236706-simpleform-definition.png" /&gt;&lt;/P&gt;
  &lt;P&gt;It appears that this layout definition is also not working at runtime, as the content displays in one column despite my specifying otherwise.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/236707-form-display.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Is there any reason why ColumnLayout is not being recognized as a valid SimpleFormLayout?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 06:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaq-p/716785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-10-23T06:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleFormLayout.ColumnLayout not usable</title>
      <link>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaa-p/716786#M197609</link>
      <description>&lt;P&gt;I had the same issue. I do not believe that they support the ColumnLayout any more (???) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, my  goal was to get two columns in the output. If that is also your goal, (???) then   I ended up using the ResponsiveGridLayout. I had to split the columns myself by adding a form:FormContainer around each column.&lt;/P&gt;&lt;P&gt;The ResponsiveGridLayout will automatically split Containers into 1 or 2 or 3,..columns if there is room. I already had the column (container) labels setup from previous work and so this did not bother me overly much. Although I see the concern if you do no already have the inputs grouped.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form:Form app:Delete="1" app:Insert="1" app:Update="1" class="editableForm" editable="true" id="idForm"&amp;gt;
    &amp;lt;form:layout&amp;gt;
        &amp;lt;form:ResponsiveGridLayout adjustLabelSpan="false" 
             columnsL="2" 
             columnsM="2" 
             columnsXL="2" 
             emptySpanL="0" 
             emptySpanM="0" 
             emptySpanS="0" 
             emptySpanXL="0" 
             labelSpanL="4" 
             labelSpanM="12" 
             labelSpanS="12" 
             labelSpanXL="4" 
             singleContainerFullSize="false"/&amp;gt;
	&amp;lt;/form:layout&amp;gt;
	&amp;lt;form:FormContainer title="Column 1"&amp;gt;
            &amp;lt;form:FormElement&amp;gt;
	        &amp;lt;form:label&amp;gt;
	            &amp;lt;smartField:SmartLabel labelFor="id___projWBSCode"/&amp;gt;
	        &amp;lt;/form:label&amp;gt;
	        &amp;lt;smartField:SmartField id="id___projWBSCode" suggest="suggest" value="{projWBSCode}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
	    &amp;lt;form:FormElement&amp;gt;
		&amp;lt;form:label&amp;gt;
			&amp;lt;smartField:SmartLabel labelFor="id___projName"/&amp;gt;
		&amp;lt;/form:label&amp;gt;
		&amp;lt;smartField:SmartField id="id___projName" suggest="suggest" value="{projName}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
        &amp;lt;/form:FormContainer&amp;gt;
        &amp;lt;form:FormContainer title="Column 2"&amp;gt;
            &amp;lt;form:FormElement&amp;gt;
	        &amp;lt;form:label&amp;gt;
	            &amp;lt;smartField:SmartLabel labelFor="id___projWBSCode1"/&amp;gt;
	        &amp;lt;/form:label&amp;gt;
	        &amp;lt;smartField:SmartField id="id___projWBSCode1" suggest="suggest" value="{projWBSCode}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
	    &amp;lt;form:FormElement&amp;gt;
		&amp;lt;form:label&amp;gt;
			&amp;lt;smartField:SmartLabel labelFor="id___projName1"/&amp;gt;
		&amp;lt;/form:label&amp;gt;
		&amp;lt;smartField:SmartField id="id___projName1" suggest="suggest" value="{projName}"/&amp;gt;
	    &amp;lt;/form:FormElement&amp;gt;
        &amp;lt;/form:FormContainer&amp;gt;
&amp;lt;/form:Form&amp;gt;
		
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Oct 2018 13:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaa-p/716786#M197609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-10-24T13:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleFormLayout.ColumnLayout not usable</title>
      <link>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaa-p/716787#M197610</link>
      <description>&lt;P&gt;This is also useful when you want to achieve a specific arrangement between the columns of the form.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 14:33:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/simpleformlayout-columnlayout-not-usable/qaa-p/716787#M197610</guid>
      <dc:creator>former_member642079</dc:creator>
      <dc:date>2020-01-24T14:33:03Z</dc:date>
    </item>
  </channel>
</rss>

