• Alex Sh
  • NEWBIE
  • 65 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 1
    Likes Given
  • 10
    Questions
  • 6
    Replies

Hi All,
I have VF page with table like this:
 

<apex:page standardController="Account" extensions="ActivityController" > 
<apex:form >
        <apex:pageblock title="Activity" >
            <apex:pageBlockTable value="{!AllRecords}" var="rec">
                <apex:column value="{!rec.Type}" headerValue="Type"/>
                <apex:column  value="{!rec.Subj}" headerValue="Subject"/>
                </apex:column>
                <apex:column value="{!rec.description}" headerValue="Description"/>
            </apex:pageBlockTable>            
        </apex:pageblock>
    </apex:form>
</apex:page>
The description field is a text field and it's too long. So I need to add "Show more/ Show less" button for this in table. Can someone pls suggest the best way to do this?
Thanks!
Hi All,
I have  a custom objects Obj1 and Obj2. I need to create appropriate Obj2 and copy field to it from Obj1. As I understand I need to use Batch clas but how exactly I can do this?
Thanks!
Hi,
I have an integration SF with CallRail. When I make a call - new Lead is created. And there is a link on Lead page to record of my call. But when I click on it - I get page with error: 
"error": "HTTP Token: Access denied"
Could someone explaine why does it happen?
Thanks!
I have VF page with two pageBlockSections. I need to display it in Object page. But when Object type ->  'Single', only first pageBlockSections from VF page should be displayed in Object page. How can I do this?
Thanks!
Hi All,
I have a VF page witn drop-down field "Selection" (value1 - 'All'; value2 - 'Partial') and a list of objects. For each object there is a checkbox. If value1 - 'All' is selected in drop-down - all of checboxes should be checked in list. If value2 - 'Partial' is selected in drop-down - than I need to select at least one checkbox.
How can I do this?
Thanks!
Hi All,
I have a visualforce page with list of orders. And there is a link "Request" for every order. When I click "Request" link, then order gets a status "Requested".
I need to create a validation rule: If there is already order with the status “Requested”, then the user got a message that there is another pending order. Could someone help with this? Thanks!