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
studzeystudzey 

Weird InLine Editing Issue

Hi guys,

 

Weird issue - I recently updated my custom object "View" with a new tabbedaccount view. The code is below. As you will see, inlineedit has been enabled...but it seems as though I cant edit the fields by double clicking on them?? and when I revert back to the standard view it works again! (i.e. not updated by a VF page)

 

I checked the USer Interface settings, and I checked the profile setup to ensure that the application tickbox is disabled......so what's causing this? Is this a bug with Salesforce?

 

Thanks a mil

 

Stadler 

 

<apex:page standardController="Trading_Contract__c" showHeader="true">
<style>
.activeTab {background-color: #236FBD; color:white; background-image:none}
.inactiveTab { background-color: lightgrey; color:black; background-image:none}
</style>

<apex:tabPanel tabClass="activeTab" inactiveTabClass="inactiveTab"
switchType="client" selectedTab="tabdetails" id="AccountTabPanel">
<apex:tab label="Main Contract Details" name="contractDetails" id="tabdetails">
<apex:detail inlineedit="true" relatedList="false" title="true"/></apex:tab>
 <apex:tab label="Intermediary Agreements" name="intermediaryagreements" id="intermediaryagreements">
<apex:relatedList list="TC_Intermediatries__r" />
</apex:tab>

<apex:tab label="Related Shipments" name="shipments" id="shipments">
<apex:relatedList list="TC_SH__r" />
</apex:tab>
 <apex:tab label="Related Certificate Trades" name="certificatetrades" id="certificatetrades">
<apex:relatedList list="cert_trading_related_to_contract__r" />
</apex:tab>
<apex:tab label="Related Letter of Credits" name="contractletterofcredits" id="contractletterofcredits">
<apex:relatedList list="Letter_of_Credits__r" />
</apex:tab>

<apex:tab label="Open Activities" name="OpenActivities" id="tabOpenAct">
<apex:relatedList subject="{!Trading_Contract__c}" list="OpenActivities" />
</apex:tab>
<apex:tab label="Activity History" name="activityHistory" id="tabAH">
<apex:relatedList list="ActivityHistories" />
</apex:tab>
 <apex:tab label="Notes and Attachments" name="NotesAndAttachments" id="tabNoteAtt">
<apex:relatedList subject="{!Trading_Contract__c}" list="NotesAndAttachments" />
</apex:tab>
</apex:tabPanel>

</apex:page>

 

kiranmutturukiranmutturu

hope in the user interface settings inline edit option is enabled ....? apart from that i tried the same and its working fine for me...refernce code below:

 

<apex:page standardController="account" showHeader="true">
<style>
.activeTab {background-color: #236FBD; color:white; background-image:none}
.inactiveTab { background-color: lightgrey; color:black; background-image:none}
</style>

<apex:tabPanel tabClass="activeTab" inactiveTabClass="inactiveTab" switchType="client" selectedTab="tabdetails" id="AccountTabPanel">
<apex:tab label="Main Contract Details" name="contractDetails" id="tabdetails">
<apex:detail inlineedit="true" relatedList="true" title="true"/></apex:tab>
<apex:tab label="Related Shipments" name="shipments" id="shipments">
<apex:relatedList list="opportunities" />
</apex:tab>
</apex:tabPanel>
</apex:page>

studzeystudzey

Hi Kiran,

 

Yeah its quite strange...its still not working for me :( I checked the inline edit option...it is enabled...

 

I lodged a case with Salesforce...

 

What else can I really do? Sigh....