• Karun Manuja
  • NEWBIE
  • -1 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies

 

I have overridden the New Case button with custom VF page. While working in service console I am not getting the  knowledge sidebar while creating a New Case. 


Knowledge Sidebar appears If New Case button is not overridden.

 

Is there any Solution ???

 


Hello,

 

Hopefully easy question.

 

I'm trying to create PDF page and trying to format it nicely.

 

I have datatable with columns to list items I want to show.

Since I want to line up all lable and data field nicely, I've put 4 columns (label, data, label, data).

 

The question is how can I get the label of the field?

I've tyied <apex:outuputlabel value="{!Opportunity.Account.Name.label}"/>

also tried <apex:outuputtext value="{!Opportunity.Account.Name.label}"/>

 

 but didn't work.

 

    <apex:dataTable value="{!Opportunity}" var="o" columns="4" columnsWidth="150px, 220px, 150px,220px" >
    <apex:column >
    <apex:outputlabel value="{!o.Account.Name.label}" />
    </apex:column> 
    <apex:column >
    <apex:outputText value="{!o.Account.Name}" />
    </apex:column> 

 

 

  • August 18, 2011
  • Like
  • 0