• Coffee08
  • NEWBIE
  • 0 Points
  • Member since 2014

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

I am a salesforce partner. I have a customer who is having a problem with credit card processing. He is getting an error everytime someone tried to purchase something with a credit card. Upon speaking to the bank, the bank requested to be provided with the POST request that is being sent to them. So, I need to provide my customer with this information.

How do I access the data enclosed in a POST request? In other words, where can I find this POST request that is being sent to the bank?

Thank you for your help.
Hello, I am trying to display an estimated shipping date on a visualforce page. This is what I have:

<p>
<strong>Estimated Ship Date: </strong> {!TODAY() + 3}
</p>

This is what it is displaying right now:

Sat Aug 09 00:00:00 GMT 2014

How do I make it display just this:

Sat Aug 09, 2014

?

Please help.
How do I wrap a certain text field so that it wraps really long file names?
For example, if the sentence field has value "A long line broken up into many words" , then it might wrap it and display the field as:

Sentence: A long line broken up
                   into many words

but if there is an attachment field with the file name "A_long_line_not_broken_up_into_words.pdf" , then it does not wrap it:

Attachment: A_long_line_not_broken_up_into_words.pdf

I want it to be like this:

Attachment: A_long_line_not_broken
                      _up_into_words.pdf

How do I get it to break that up and wrap it still?
I am working on a visualforce page and I need to figure out how to make them fit together. So here is what it looks like:
|   a   |   b   |   c   |   d   |   e   |

They all fit on there pretty well but now a is longer than the others and it is going to a second line underneath. I want to make it so there is only one line but a fits in there and the spaces on the others are adjusted accordingly. The code I have is similar to this:

<div class="row">
    <div class="col-xs-12">
     <ul id=" " class=" "> 
          <apex:outputPanel layout="none" rendered=" ">
           <li class="active">
           <a class="text-center product-option" href=" " data-toggle="tab">
           <div class="product-option-title"><b> x </b></div>
           </a>
           </li>
        </apex:outputPanel>
      <apex:outputPanel layout="none" rendered=" ">
       <li>
        <a class="text-center product-option" href="#news" data-toggle="tab">
         <div class="product-option-title"><b> y </b></div>
        </a>
       </li>
      ...
     </ul>
    </div>
</div>

Please help
How do I wrap a certain text field so that it wraps really long file names?
For example, if the sentence field has value "A long line broken up into many words" , then it might wrap it and display the field as:

Sentence: A long line broken up
                   into many words

but if there is an attachment field with the file name "A_long_line_not_broken_up_into_words.pdf" , then it does not wrap it:

Attachment: A_long_line_not_broken_up_into_words.pdf

I want it to be like this:

Attachment: A_long_line_not_broken
                      _up_into_words.pdf

How do I get it to break that up and wrap it still?
I am working on a visualforce page and I need to figure out how to make them fit together. So here is what it looks like:
|   a   |   b   |   c   |   d   |   e   |

They all fit on there pretty well but now a is longer than the others and it is going to a second line underneath. I want to make it so there is only one line but a fits in there and the spaces on the others are adjusted accordingly. The code I have is similar to this:

<div class="row">
    <div class="col-xs-12">
     <ul id=" " class=" "> 
          <apex:outputPanel layout="none" rendered=" ">
           <li class="active">
           <a class="text-center product-option" href=" " data-toggle="tab">
           <div class="product-option-title"><b> x </b></div>
           </a>
           </li>
        </apex:outputPanel>
      <apex:outputPanel layout="none" rendered=" ">
       <li>
        <a class="text-center product-option" href="#news" data-toggle="tab">
         <div class="product-option-title"><b> y </b></div>
        </a>
       </li>
      ...
     </ul>
    </div>
</div>

Please help