0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

e.force:createRecordで日付型を使う時の注意

Posted at

元の質問 : Custom Lightning Component broken

単純に日付型を設定できないようです。

I'm not exactly sure why, but if you try to just set the currentYear variable in the Default Field:Close Date, Salesforce will not accept it. But if you create a date attribute in the component, store the exact same value in this attribute, then call the attribute in the Close Date field, Salesforce accepts it.

正確な理由はわかりませんが、CurrentYear 変数を Default Field: Close Date に設定しようとすると、Salesforce はそれを受け入れません。ただし、コンポーネントで日付属性を作成し、この属性にまったく同じ値を保存してから、[完了予定日] 項目で属性を呼び出すと、Salesforce はそれを受け入れます。

Populating date on e.force:createRecord

一旦変数にセットしてから使えばいいみたい。

コンポーネント

<aura:attribute name="todaysDate" type="Date"/>

コントローラ

newRecord : function(component, event, helper) 
    { 
        var currentYear = $A.localizationService.formatDate(new Date(), "YYYY-12-31");
        component.set("v.todaysDate", currentYear);
        var createRecordEvent = $A.get("e.force:createRecord");
        //change this when deploying
        var RecTypeID  = '0126C0000005BT9QAM';
        createRecordEvent.setParams({
            "entityApiName": 'Opportunity',
            "recordTypeId": RecTypeID,
            'defaultFieldValues': {
                'Type' : 'Land',
                'Budget_Status__c' : 'Pending',
                'StageName' : 'Pursuit Identified',
                'CloseDate' : component.get('v.todaysDate')
            }   
            
            
        });
        createRecordEvent.fire();
    }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?