ボタンからリンクをつくるようにお題がまた変わった?
ダイナミックフォームを設定しているとリンクは表示されない
I tried it out using two playgrounds. I think the dynamic form is applied on the right.
No it will not support custom links
please refer to the limlitaions of the Dynamic forms
https://help.salesforce.com/articleView?id=dynamic_forms_limitations.htm&type=5
Does dynamic forms support custom links?
https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000A95cNSAR
同じ解決策
リンクのボタンだと言っているけど...
Winter 23までのお題はボタンを作ること?
よく見るのですが。何故か誰もうまくいかない不思議なチャレンジです。
これが答えとは思うのですがねぇ。
- (Help with "Creating custom button for contact object"
- hallenge Not yet complete... here's what's wrong: The 'Google Info' custom button was not found. Make sure that it is a Detail Page Button (not link) and that its added to the page layout.
- [Contact Layout] ページレイアウトに「Google_Info」という名前のボタンは見つかりませんでした。
リンクでなく、ボタンとして作る必要がある。
NOTE :- you need to make Google info as a button not link.
Please check below post with step by step process with screen shot
- https://developer.salesforce.com/forums/?id=906F0000000BPIOIA4
- https://developer.salesforce.com/forums/?id=906F0000000BRNfIAO
To clear this challange you need do below steps:-
Step 1 :- Create a Button on contact object like below
Step 2 :- Link detail should be like below.
Name :- Google_Info
Button or Link URL :- http://google.com/#q={!Contact.Name}
Display Type :- Detail Page Button
Step 3 :- Add the button on contact page layout. Please select "Contact Layout"
Step 4 :- Then click on Edit and add button on page.
Step 5 : - Save.
Please check below post for screen shot.
The 'Google Link' custom button was not found
Trailhead challenge wouldn't accept 'Google Info' button
Google info is nowhere to find
Add a Custom Button to a Contact
解説がある
- Creating Custom Button Challenge
- Hey trailblazer i am getting "We couldn't find a button named 'Google_Info' on the 'Contact Layout' page layout."
I was in a similar situation and this is what i did to pass the challenge, go to Object Manager>Contact>Button, Links, and Actions>...scroll down the page till you see the "Google Info" link/button....you can either delete again or edit it by changing the name for example to "Apple info", save it.
Then go back and create a new button with the "Google Info" name and follow the instructions in the challenge. That should work.
私は同様の状況にあり、これがチャレンジに合格するために行ったことです。オブジェクトマネージャー>連絡先>ボタン、リンク、およびアクション>...「Google情報」リンク/ボタンが表示されるまでページを下にスクロールします。 ...もう一度削除するか、名前を「Apple info」などに変更して編集し、保存することができます。
次に戻って「Google Info」という名前の新しいボタンを作成し、チャレンジの指示に従います。それはうまくいくはずです。
未解決
未分類
I'm not sure. I'm following the steps in the Lightning Experience Customization but now I see I inadvertently skipped around the Get Started with Lightening Experience trail, so I'm going to go back and do it in order in case I missed something.
NO_ACCESS: User was not authorized for the community
Try modifying below lines in the apex class which is added on the auth providers.
- For Partner experience, the code should be:
- private static final String DEFAULT_ACCOUNTNAME = 'Partners';
- private static final String EXTERNAL_USER_PROFILE = 'Partners';
2. For Customer experience, it should be:
- private static final String DEFAULT_ACCOUNTNAME = 'Customers';
- private static final String EXTERNAL_USER_PROFILE = 'Customers';