• govind v 3
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 1
    Replies
I'm trying to build custom table in LWC ,When im trying to iterate through Data from Java script.It is some how not showing as expected.
Row that starts B5(row span of 5) should have nested rows with Beta,Gamma,Delta,Epsilon,Eta
Row that starts C1 should have Theta same like row A1 with Alpha
 
Im pasting my code here 
<template>
    <table>
        <tr>
            <th class="cellstyle">Business Area</th>
            <th class="cellstyle">Project</th>
            <th class="cellstyle">Jan</th>
            <th class="cellstyle">Feb</th>
            <th class="cellstyle">Mar</th>
            <th class="cellstyle">Apr</th>
            <th class="cellstyle">May</th>
            <th class="cellstyle">Jun</th>
            <th class="cellstyle">Jul</th>
            <th class="cellstyle">Aug</th>
            <th class="cellstyle">Sep</th>
            <th class="cellstyle">Oct</th>
            <th class="cellstyle">Nov</th>
            <th class="cellstyle">Dec</th>
            <th class="cellstyle">Status</th>
            <th class="cellstyle">Total HC In-Scope</th>
        </tr>
        <template for:each={data} for:item="project">
            <tr key={project.ba}>
                    <td class="cellstyle" rowspan={project.proj.length}>{project.ba}{project.proj.length}</td>
                        <template for:each={project.proj} for:item="proj"> 
                            <td key={proj.name}>{proj.name}</td>
                            <td key={proj.name}>{proj.jan}</td>
                            <td key={proj.name}>{proj.feb}</td>
                            <td key={proj.name}>{proj.mar}</td>
                            <td key={proj.name}>{proj.apr}</td>
                            <td key={proj.name}>{proj.may}</td>
                            <td key={proj.name}>{proj.jun}</td>
                            <td key={proj.name}>{proj.jul}</td>
                            <td key={proj.name}>{proj.aug}</td>
                            <td key={proj.name}>{proj.sep}</td>
                            <td key={proj.name}>{proj.oct}</td>
                            <td key={proj.name}>{proj.nov}</td>
                            <td key={proj.name}>{proj.dec2}</td>
                            <td key={proj.name}>{proj.status}</td>
                            <td key={proj.name}>{proj.hcscope}</td>
                        </template>
            </tr>
        </template>
    </table>
</template>
 
js 
 
import { LightningElement } from 'lwc';
export default class CustomTable extends LightningElement {
    data = [
        {
            ba: 'A',
            proj: [
                {
                    name: 'Alpha',
                    dec: '1',
                    jan: '2',
                    feb: '3',
                    mar: '4',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '2'
                }
            ],
            size : 0
 
        },
        {
            ba: 'B',
            proj: [
                {
                    name: 'Beta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '2'
                },
                {
                    name: 'Gamma',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Ongoing',
                    hcscope: '3'
                },
                {
                    name: 'Delta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '200'
                },
                {
                    name: 'Epsilon',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Ongoing',
                    hcscope: '122'
                },
                {
                    name: 'Eta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Terminated',
                    hcscope: '30'
                }
 
            ],
            size : 4
        },
        {
 
            ba: 'C',
            proj: [
                {
                    name: 'Theta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '2'
                }
            ],
            size : 0
        },
    ]
 
}
Let me know where i'm going wrong #Salesforce Developer #LWC Development #Salesforce Developers
During winter 20 release salesforce has provided new feature "Expand Email" in lightning.

I'm unable to figure out how to enable this.

https://releasenotes.docs.salesforce.com/en-us/winter20/release-notes/rn_cases_expand_collapse_email.htm

Please help me in this?Thanks in advance
I have users who are unable to find "My Email Settings " option in personal settings.

Please find the screenshot for clarityUser-added image
When a getting an error when we are saving a record page in lightning.Please find the screen for more details???User-added image
I have a query like we have a permission set with license as none,can we edit tab settings for this,I can find tab settings when click edit on a object were we need to make changes.
I have text field,there is use case like it needs to be converted to a lookup into account.

Can this be achieved???
Many Thanks in advance
My email logs shows error of undeliverable but i'm unable to see the email as bounced in my org,Bounce management is activated ,Please find the screenshot of logs for reference?User-added image
I have a usecase like I need to move some of the closed cases related to another account.how we can achieve this??
please help me 
Thanks In advance
Hi All,

I want to know how to get the details of all changes made on a field in salesforce??
All changes(what change,Who made)
I want to know where a user is being referenced in salesforce(groups,approval prcoesses,email alerts) how can this be achieved???
Please help me
Is it necessary to have system admin profile inorder to merge accounts in salesforce because i have gone through some of docs where it is mentioned admin permission is needed.Could anyone please clarify this be great help.Thanks in advance
When a tried to view the access given for the leads list view,I came accross sharing to "ALL INTERNAL USERS" .What does "All Internal Users" actually mean?
Which users comes under "ALL INTERNAL USERS"
Need to extract all the metadata related to an application in salesforce.Is this possible?
I'm trying to build custom table in LWC ,When im trying to iterate through Data from Java script.It is some how not showing as expected.
Row that starts B5(row span of 5) should have nested rows with Beta,Gamma,Delta,Epsilon,Eta
Row that starts C1 should have Theta same like row A1 with Alpha
 
Im pasting my code here 
<template>
    <table>
        <tr>
            <th class="cellstyle">Business Area</th>
            <th class="cellstyle">Project</th>
            <th class="cellstyle">Jan</th>
            <th class="cellstyle">Feb</th>
            <th class="cellstyle">Mar</th>
            <th class="cellstyle">Apr</th>
            <th class="cellstyle">May</th>
            <th class="cellstyle">Jun</th>
            <th class="cellstyle">Jul</th>
            <th class="cellstyle">Aug</th>
            <th class="cellstyle">Sep</th>
            <th class="cellstyle">Oct</th>
            <th class="cellstyle">Nov</th>
            <th class="cellstyle">Dec</th>
            <th class="cellstyle">Status</th>
            <th class="cellstyle">Total HC In-Scope</th>
        </tr>
        <template for:each={data} for:item="project">
            <tr key={project.ba}>
                    <td class="cellstyle" rowspan={project.proj.length}>{project.ba}{project.proj.length}</td>
                        <template for:each={project.proj} for:item="proj"> 
                            <td key={proj.name}>{proj.name}</td>
                            <td key={proj.name}>{proj.jan}</td>
                            <td key={proj.name}>{proj.feb}</td>
                            <td key={proj.name}>{proj.mar}</td>
                            <td key={proj.name}>{proj.apr}</td>
                            <td key={proj.name}>{proj.may}</td>
                            <td key={proj.name}>{proj.jun}</td>
                            <td key={proj.name}>{proj.jul}</td>
                            <td key={proj.name}>{proj.aug}</td>
                            <td key={proj.name}>{proj.sep}</td>
                            <td key={proj.name}>{proj.oct}</td>
                            <td key={proj.name}>{proj.nov}</td>
                            <td key={proj.name}>{proj.dec2}</td>
                            <td key={proj.name}>{proj.status}</td>
                            <td key={proj.name}>{proj.hcscope}</td>
                        </template>
            </tr>
        </template>
    </table>
</template>
 
js 
 
import { LightningElement } from 'lwc';
export default class CustomTable extends LightningElement {
    data = [
        {
            ba: 'A',
            proj: [
                {
                    name: 'Alpha',
                    dec: '1',
                    jan: '2',
                    feb: '3',
                    mar: '4',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '2'
                }
            ],
            size : 0
 
        },
        {
            ba: 'B',
            proj: [
                {
                    name: 'Beta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '2'
                },
                {
                    name: 'Gamma',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Ongoing',
                    hcscope: '3'
                },
                {
                    name: 'Delta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '200'
                },
                {
                    name: 'Epsilon',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Ongoing',
                    hcscope: '122'
                },
                {
                    name: 'Eta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Terminated',
                    hcscope: '30'
                }
 
            ],
            size : 4
        },
        {
 
            ba: 'C',
            proj: [
                {
                    name: 'Theta',
                    dec: '',
                    jan: '',
                    feb: '',
                    mar: '',
                    apr: '',
                    may: '',
                    jun: '',
                    jul: '',
                    aug: '',
                    sep: '',
                    oct: '',
                    nov: '',
                    dec2: '',
                    status: 'Completed',
                    hcscope: '2'
                }
            ],
            size : 0
        },
    ]
 
}
Let me know where i'm going wrong #Salesforce Developer #LWC Development #Salesforce Developers