• Amiya Das1410
  • NEWBIE
  • 10 Points
  • Member since 2019

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

I have a scenario to restrict a community user from creating more than 1 private chatter group. Trigger has been created for this. Now while covering the trigger handler class via test class, I am facing the issue on how to create a chatter group for community users via apex. Is this a constraint??
Any suggestions or workarounds for this.

Thanks
I have a scenarion, that when a field value exceeds a particular range , an alert/warning should be displayed. How to display this Alert/Warning Message on Object Standard Page Layout in Lightning?.

Any help will be appreciated
How to mass update selected records in list view using lightning quick action invoking lightning component.
Any help would be much appreciated.
 
Hi All,

I was trying LWC local development and using command : 'sfdx plugins:install @salesforce/lwc-dev-server' after creating a new project. Getting error like :- 'self signed certificate in certificate chain'. Can somebody assist here.

Thanks
Hi All,

I created a component with Inteface 'forceCommunity:themeLayout' to use this as custom theme for communities and also added 'access' as global. But this theme is not displaying in list of theme in communities. Below is the component.
<aura:component implements="forceCommunity:themeLayout" access="global" >
	<aura:attribute name="menu" type="Aura.Component[]" required="false" />
    <aura:attribute name="header" type="Aura.Component[]" required="false" />
    <aura:attribute name="searchResult" type="Aura.Component[]" required="false" />
    <aura:attribute name="bodyResult" type="Aura.Component[]" required="false" />
    <aura:attribute name="footer" type="Aura.Component[]" required="false" />
    <aura:attribute name="backgroundImageURL" type="String" default=""/>
	<aura:handler name="init" value="{!this}" action="{!c.doInit}"/> 
    <div class="c-container">
        <lightning:layout multipleRows="true">
            <lightning:layoutItem size="12" smallDeviceSize="2" mediumDeviceSize="2" largeDeviceSize="2" flexibility="auto">
            	{!v.menu}
            </lightning:layoutItem>
            <lightning:layoutItem size="12" smallDeviceSize="10" mediumDeviceSize="10" largeDeviceSize="10" flexibility="auto">
            	 <lightning:layout multipleRows="true">
                    <lightning:layoutItem size="12" smallDeviceSize="12" mediumDeviceSize="12" largeDeviceSize="12" flexibility="auto">
                        {!v.header}
                    </lightning:layoutItem>
                </lightning:layout>
                <div class="slds-grid slds-wrap accountNav">
                    <div class="slds-col slds-size_1-of-1 slds-medium-size_5-of-12 slds-large-size_5-of-12 slds-account-style">
                    	{!v.searchResult}
                    </div>
                    <div class="slds-col slds-size_1-of-1 slds-medium-size_7-of-12 slds-large-size_7-of-12 slds-account-style" style="{!'position: relative; height: 30vh; background:' + v.backgroundColor + ' url(' + v.backgroundImageURL +') no-repeat;min-height: calc(100vh - 88px);background-position: center;background-size: cover;'}">
                    	{!v.bodyResult}
                    </div>
                </div>
            </lightning:layoutItem>
        </lightning:layout>
        <lightning:layout multipleRows="true">
            <lightning:layoutItem size="12" smallDeviceSize="12" mediumDeviceSize="12" largeDeviceSize="12" flexibility="auto">
            	{!v.footer}
            </lightning:layoutItem>
        </lightning:layout>
    </div>
</aura:component>

 
My web component name is :- 'paginatorLWC'. I am calling this from another web component via : <c-paginator-lwc></<c-paginator-lwc>.
Can somebody suggest what is reason for error :  'LWC1010: Failed to resolve entry for module'. I tried :- <c-paginator-LWC></<c-paginator-LWC> also. I know this is case sensitive. 

Thanks in Advance.
Please help me out to extract lightning notes(notes related list in lightning). When I am trying to extract, content is restricted to 255 character, but while entering in UI, it is having more than 255 character limit and notes are saved successfully. 
Used AttachedContentNote & ContentVersion objects. Let me know what I am missing here.

Thanks in adavance
I want to take backup of my newly refreshed sandbox org. While doing so via MavensMate, it is showing oAuth error like below. 
Is this the issue for all newly created/refreshed orgs ??. 
If yes, I want to know how to take backup of org via vs code directly without mavens.
Thanks in advance.User-added image
How to mass update selected records in list view using lightning quick action invoking lightning component.
Any help would be much appreciated.
 
Hi All,

I was trying LWC local development and using command : 'sfdx plugins:install @salesforce/lwc-dev-server' after creating a new project. Getting error like :- 'self signed certificate in certificate chain'. Can somebody assist here.

Thanks
Hi All,

I created a component with Inteface 'forceCommunity:themeLayout' to use this as custom theme for communities and also added 'access' as global. But this theme is not displaying in list of theme in communities. Below is the component.
<aura:component implements="forceCommunity:themeLayout" access="global" >
	<aura:attribute name="menu" type="Aura.Component[]" required="false" />
    <aura:attribute name="header" type="Aura.Component[]" required="false" />
    <aura:attribute name="searchResult" type="Aura.Component[]" required="false" />
    <aura:attribute name="bodyResult" type="Aura.Component[]" required="false" />
    <aura:attribute name="footer" type="Aura.Component[]" required="false" />
    <aura:attribute name="backgroundImageURL" type="String" default=""/>
	<aura:handler name="init" value="{!this}" action="{!c.doInit}"/> 
    <div class="c-container">
        <lightning:layout multipleRows="true">
            <lightning:layoutItem size="12" smallDeviceSize="2" mediumDeviceSize="2" largeDeviceSize="2" flexibility="auto">
            	{!v.menu}
            </lightning:layoutItem>
            <lightning:layoutItem size="12" smallDeviceSize="10" mediumDeviceSize="10" largeDeviceSize="10" flexibility="auto">
            	 <lightning:layout multipleRows="true">
                    <lightning:layoutItem size="12" smallDeviceSize="12" mediumDeviceSize="12" largeDeviceSize="12" flexibility="auto">
                        {!v.header}
                    </lightning:layoutItem>
                </lightning:layout>
                <div class="slds-grid slds-wrap accountNav">
                    <div class="slds-col slds-size_1-of-1 slds-medium-size_5-of-12 slds-large-size_5-of-12 slds-account-style">
                    	{!v.searchResult}
                    </div>
                    <div class="slds-col slds-size_1-of-1 slds-medium-size_7-of-12 slds-large-size_7-of-12 slds-account-style" style="{!'position: relative; height: 30vh; background:' + v.backgroundColor + ' url(' + v.backgroundImageURL +') no-repeat;min-height: calc(100vh - 88px);background-position: center;background-size: cover;'}">
                    	{!v.bodyResult}
                    </div>
                </div>
            </lightning:layoutItem>
        </lightning:layout>
        <lightning:layout multipleRows="true">
            <lightning:layoutItem size="12" smallDeviceSize="12" mediumDeviceSize="12" largeDeviceSize="12" flexibility="auto">
            	{!v.footer}
            </lightning:layoutItem>
        </lightning:layout>
    </div>
</aura:component>

 
I want to take backup of my newly refreshed sandbox org. While doing so via MavensMate, it is showing oAuth error like below. 
Is this the issue for all newly created/refreshed orgs ??. 
If yes, I want to know how to take backup of org via vs code directly without mavens.
Thanks in advance.User-added image