function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
thsrthsr 

タブの表示順を変えたいんですが、

自作のタブの表示順を変えたいんですが、教えていただけますか?

よろしくお願いいたします。

Best Answer chosen by Admin (Salesforce Developers) 
HikeyHikey

自分だけのタブを変更すらならタブが並んでいるところの一番右の三角マークをクリックして、「タブのカスタマイズ」するとアプリケーションごとにタブの順番を設定できますね。

 

組織全体のアプリケーションのタブの表示順は設定→アプリケーションの設定→アプリケーションでアプリケーションの一覧が見えるのでそこの「編集」リンクをクリックするとそのアプリケーションで表示するタブと順序が変更できるようです。

 

 

Visualforceで開発するときはタブのコンポーネントを使えば 上から書いた順番に表示されますよ。

 

===

<apex:page id="thePage">
 <apex:tabPanel switchType="client" selectedTab="name2" id="theTabPanel">
  <apex:tab label="One" name="name1" id="tabOne">content for tab one</apex:tab>
  <apex:tab label="Two" name="name2" id="tabTwo">content for tab two</apex:tab>
 </apex:tabPanel>
</apex:page>

All Answers

HikeyHikey

自分だけのタブを変更すらならタブが並んでいるところの一番右の三角マークをクリックして、「タブのカスタマイズ」するとアプリケーションごとにタブの順番を設定できますね。

 

組織全体のアプリケーションのタブの表示順は設定→アプリケーションの設定→アプリケーションでアプリケーションの一覧が見えるのでそこの「編集」リンクをクリックするとそのアプリケーションで表示するタブと順序が変更できるようです。

 

 

Visualforceで開発するときはタブのコンポーネントを使えば 上から書いた順番に表示されますよ。

 

===

<apex:page id="thePage">
 <apex:tabPanel switchType="client" selectedTab="name2" id="theTabPanel">
  <apex:tab label="One" name="name1" id="tabOne">content for tab one</apex:tab>
  <apex:tab label="Two" name="name2" id="tabTwo">content for tab two</apex:tab>
 </apex:tabPanel>
</apex:page>

This was selected as the best answer
thsrthsr

ご回答ありがとうございます。

 

とても参考になりました。

 

またよろしくお願いいたします。