• mxstrand
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 0
    Questions
  • 1
    Replies
I can't add custom apex class to type of aura:attribute.

I have no idea what happens.
<aura:component controller="CVP.TestTypes">
    
    <aura:attribute name="products" type="CVP.TestClass[]"/>

</aura:component>

And Apex
 
public class TestTypes {
    public class TestClass {
        @AuraEnabled
        public String name = 'Stan';
        @AuraEnabled
    	public Integer age = 12;
    }
}

 
Hi,

There are few ways to add Footer to the Customer Community (Napili in our case), either through CMS Connect or via standard HTML component which is placed in the template footer box. Problem is that although the box is designed to hold the Footer per se, the behavior of it is not fully adjusted to the need.
 
The Footer should exist at the bottom of the page on short content, or beneath the content on long pages, while in reality Salesforce currently doesn't answer the first need and in short content pages the footer is not adjusted to the bottom.

I've tried unssuccesfully to overcome it with CSS. Has anybode succeeded?

Thanks,
Arthur