You need to sign in to do that
Don't have an account?

LWC Request
Hi,
I have total ten fields which are displayed on the page.The page is designed using lwc .
Now the width between two particular fields should be increased and also the ten fields should be displayed. How to achieve
The displayed are displayed by
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Finish Role">Role</div>
<!-- <div class="slds-truncate" style="text-align:center" title="Finish Role">Role</div> -->
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="start Role"> Role</div>
<!-- <div class="slds-truncate" style="text-align:center" title="start Role">Role</div> -->
</th>
Any Assistance
Thanks in advance
I have total ten fields which are displayed on the page.The page is designed using lwc .
Now the width between two particular fields should be increased and also the ten fields should be displayed. How to achieve
The displayed are displayed by
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Finish Role">Role</div>
<!-- <div class="slds-truncate" style="text-align:center" title="Finish Role">Role</div> -->
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="start Role"> Role</div>
<!-- <div class="slds-truncate" style="text-align:center" title="start Role">Role</div> -->
</th>
Any Assistance
Thanks in advance
Try Below Code Please Mark It As Best Answer If It Helps
Thank You!
All Answers
Try Below Code Please Mark It As Best Answer If It Helps
Thank You!
All ten fields should be displayed besides that Available And flexible ( Fields i mentioned should have more visibility
than what is available now, for that we can reduce visibility of other fields).The widths of the two fields must increase
How can we achieve this
<th class="slds-size_1-of-10" scope="col" >
<div class="slds-truncate" style="text-align:center" title="Candidate Position">View Record</div>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Candiadate Location">Name</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Address Type">Address Type</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Location">Location</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Phone">Phone</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Email">Email</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Fax">Fax</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Available">Available</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Flexible ">Flexible</div>
</th>
<th class="slds-size_1-of-10" scope="col">
<div class="slds-truncate" style="text-align:center" title="Exceed Limit">Exceed Limit</div>
</th>
All ten fields should be displayed besides that Available And flexible ( Fields i mentioned should have more visibility
than what is available now, for that we can reduce visibility of other fields)
How can we achieve this
Try Below Code Please Mark It As Best Answer If It Helps
Thank You!
Thanks it worked and then
How to decrease the Actual width of Candidate Position,Candidate Location , Address Type, They mainly want to see more of Available, Flexible
Thanks in advance