• Rao Potlapalli
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
<!--campingListItem.cmp-->
<aura:component >
	<aura:attribute name="item" type="Camping_Item__c" required="true"/>

	<ui:outputText value="{!v.item.Name}" />
	<ui:outputCheckbox value="{!v.item.Packed__c}" />
	<ui:outputCurrency value="{!v.item.Price__c}" />
	<ui:outputNumber value="{!v.item.Quantity__c}" />
	<ui:button label="Packed!" press="{!c.packItem}"/>
	
</aura:component>
<!--campingListController.js-->
({
	packItem : function(component, event, helper) {
		var button = event.getSource().get("v.disabled");
		component.set("v.item.Packed__c", "true");
		component.set(button, "true");
	}
})
What am I doing wrong?

 
Hi dear salesforce developers ,

I have built an integration between my company back-office application, Apex classes and Lightning components to build a front-end application.
Now the project is become mature, I'd like to version it ( I still do lots of enhancements and i'd like to keep backups of my previous versions ).

I saw the Eclipe plugin for Apex classes, and I can use it to export the Apex pages, but what about the Lightning components ?
I've browsed lots of forums but didn't find the answer yet.

Do anyone have a solution to export lightning components into files ? :)

Thanks & best regards