function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
S SaiS Sai 

how to devide section blocks in in lightning

Hi
how to devide section blocks using lightning components  in salesforce 
Thanks
SAi
salesforce mesalesforce me
hi check this once...
 
<apex:page>
    <apex:form>
        <div style="float:left">
            <apex:iframe src="/apex/page1" scrolling="true" id="theIframe" width="50%"/>
        </div>
        <apex:iframe src="/apex/page2" scrolling="true" id="theIframe" width="50%"/>
    </apex:form>
</apex:page>
check this once also
 
<apex:page>
	<table>
		<tbody>
			<tr>
				<td>
					<apex:include pageName="page1">
						
					</apex:include>
				</td>
				<td>
					<apex:include pageName="page2">
						
					</apex:include>
				</td>
			</tr>
		</tbody>
	</table>
</apex:page>
check this once also;-
 
<apex:page >
    <apex:form >
        
            <apex:iframe src="/apex/pageOne" scrolling="true" id="Iframe1" width="50%"/>
        
        <apex:iframe src="/apex/pageTwo" scrolling="true" id="Iframe2" width="50%"/>
    </apex:form>
</apex:page>



 
S SaiS Sai
Hi,
I am not using visualforce. I am using Lightning component.
Thanks 
sai