• Sushmita Sikha 7
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Hi
 
I have below code where I am trying to use inline editing for Status field. Inline editing is not working.
Can anybody help me where I am going wrong.
 
<apex:form >
                <apex:pageBlock >
               <apex:pageBlockTable value="{!caseList}" var="ca">
               <apex:commandButton action="{!edit}" id="editButton" value="Edit"/>
                <apex:commandButton action="{!save}" id="saveButton" value="Save"/>
                <apex:commandButton onclick="resetInlineEdit()" id="cancelButton" value="Cancel"/>
               <apex:column value="{!ca.CaseNumber}"/>
                 <apex:column headerValue="Status">
                       <apex:outputField value="{!ca.status}">
                           <apex:inlineEditSupport showOnEdit="saveButton, cancelButton" hideOnEdit="editButton" event="ondblclick" changedStyleClass="myBoldClass" resetFunction="resetInlineEdit"/>
 
                      </apex:outputField>
 
                   </apex:column>
 
                  </apex:pageBlockTable>
           <apex:commandbutton value="save" action="{!save1}"/>
 
      
           </apex:pageBlock>
            </apex:form>
 
Thanks & Regards
Sushmita Sikha
 
Hi
 
I am trying to add a widget in the console app. When Case is a primary tab, the widget shows the required VF page but when Case is subtab of Accounts, the VF page is not visible. The controller of VF page is using Case as Standard controller.
Can anybody help me, how to view this page in widget
Thanks in advance
Sushmita Sikha
Hi
 
I have below code where I am trying to use inline editing for Status field. Inline editing is not working.
Can anybody help me where I am going wrong.
 
<apex:form >
                <apex:pageBlock >
               <apex:pageBlockTable value="{!caseList}" var="ca">
               <apex:commandButton action="{!edit}" id="editButton" value="Edit"/>
                <apex:commandButton action="{!save}" id="saveButton" value="Save"/>
                <apex:commandButton onclick="resetInlineEdit()" id="cancelButton" value="Cancel"/>
               <apex:column value="{!ca.CaseNumber}"/>
                 <apex:column headerValue="Status">
                       <apex:outputField value="{!ca.status}">
                           <apex:inlineEditSupport showOnEdit="saveButton, cancelButton" hideOnEdit="editButton" event="ondblclick" changedStyleClass="myBoldClass" resetFunction="resetInlineEdit"/>
 
                      </apex:outputField>
 
                   </apex:column>
 
                  </apex:pageBlockTable>
           <apex:commandbutton value="save" action="{!save1}"/>
 
      
           </apex:pageBlock>
            </apex:form>
 
Thanks & Regards
Sushmita Sikha