• Jyothi Reddy 16
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
how do we get default record field positions in visualforce page onclick edit format custom button?
 

I have a popup which i need make it scrollable and movable(meaning one should be able to move it to any postion on the page).

 

<

styletype="text/css">

      

.customPopup{

           

background-color: grey;

           

border-style: solid;

           

border-width: 3px;

           

border-color:white;

           

left: 50%;

           

padding:10px;

           

position: absolute;

           

z-index: 9999;

           

scrollbar=yes;

           

resizable=no;

           

/* These are the 3 css properties you will need to tweak so the pop

            up displays in the center of the screen. First set the width. Then set

            margin-left to negative half of what the width is. You can also add

            the height property for a fixed size pop up.*/

           

width: 40%;

           

margin-left: -3%;

           

top:70%;

        }

</style>

these are all the attributes i have added for my popup block.