• sandhya santhanagopalan
  • NEWBIE
  • 60 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 12
    Replies
I have multiple components created which creates vendor details on multiple components, which gets updated on single object in backend. For this, i need to pass on the record id created in the first component to the other components.so that, info on multiple components save on save vendor record.
I have created an event.how to pass the record id created to event and theron passs to other components.
Thank you.
Hello,
Please help me in writing a formula field which returns the selected weeks friday's date when any day of the week is selected.
how to inline edit in data table in lightning application.please help me.
hi all
any idea how to keep a <div> fixed in lightning?
slds-is-fixed/style="position:fixed works fine in chrome desktop version to fix my footer.but not working in salesforce1.any help wud be appreciated.Thanks in advance.
I have set up an organistaion in salesforce with (available limit)2 users for salesforce licence as system admins and 2 users for salesforce-platform licence for an application development with lightning components.
My issue is 2 users with salesforce platform licence does not have permissions to create objects and dont have developer console option or option for development mode.Please help me resolve this issue.What user licence have developer console and development mode enabled?Do we need to purchase additional salesforce licences?
list<Account> lstAccounts = new list<Account>();
for(order__c objorder:trigger.new){
account a = [select id from Account where id=:objorder.Account__c];
lstAccounts .add(a);
}
update lstAccounts;
How many order will be load when developer attempts to load 150 records.