• Aditya Zagade
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi Folks,

I want to make the table scroll horizontally, adding the pseudo-code I tried.
<template>
	<lightning-card variant="narrow" class="card">
		<lightning-tabset variant="vertical">
			<lightning-tab label="Target Param1">
				<lightning-tabset>
					<lightning-tab label="Yearly">
						<!-- ADDING "slds-scrollable" HERE WORKED, BUT IT MADE "Some content..." SCROLLABLE -->
						<div>
							Some content
							.
							.
							.
						</div>
						<div>
							<table class="slds-table slds-table_bordered">
								<!-- I WANT TO MAKE TABLE HORIZONTALLY SCROLLABLE -->
								<thead>
									<th>slds-table 1</th>
									<th>slds-table 2</th>
									<th>slds-table 3</th>
									<th>slds-table 4</th>
									<th>slds-table 5</th>
								</thead>

								<tbody>
									<td>1</td>
									<td>2</td>
									<td>3</td>
									<td>4</td>
									<td>5</td>
								</tbody>

							</table>
						</div>
					</lightning-tab>
				</lightning-tabset>
			</lightning-tab>
		</lightning-tabset>
	</lightning-card>
</template>

 

Hi,

 

I need to construct a CSV file with APEX and am a bit new to this cloud computing.

Do you have any sample code I could get started with that, or a resources that you can point me to develop and generate a  CSV File to send through the Email??

 

Can this be achieved in salesforce by any Way?

  • December 29, 2011
  • Like
  • 0