• Chayan Arora
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 3
    Replies
Hi All,

I want to override standard delete button with lightning component but option not display.User-added image
Hi All,
My first concern is: I want to display list in vf page using knockjs component and 
My second concern is: when we edit/update/delete any record then vf page show changes in list which I have done in salesforce without reloading page.
Hi All,
My first concern is: I want to display list in vf page using knockjs component and 
My second concern is: when we edit/update/delete any record then vf page show changes in list which I have done in salesforce without reloading page.

Hi,  how to display list of values in Descending order .

 

apex Class :

============

public class SetPrimitiveDatatype
{
public set<String> fstName{get;set;}
public SetPrimitiveDatatype()
{
fstName=New set<String>();

fstName.add('Rama');
fstName.add('Anil');
fstName.add('Srinu');
fstName.add('Kumar');
fstName.add('Prasad');
fstName.add('Devaraju');
fstName.add('Murali');
fstName.add('Balu');
fstName.add('Chaitu');
fstName.add('Tanuja');
}
}

 

page

============

 

<apex:page controller="SetPrimitiveDatatype">
<apex:form >
<apex:pageBlock title="Display The Set of values">
<apex:pageBlockSection title="FirstName">
<apex:pageblockTable value="{!fstName}" var="fn">
<apex:column value="{!fn}"/>
</apex:pageblockTable>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

 

 

Please help me friends.............

  • October 09, 2012
  • Like
  • 0