• Yousef Shanawany
  • NEWBIE
  • 0 Points
  • Member since 2013

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

Hello,

 

I am trying to pass a value from the visualforce page to my apex code. I am using the <apex:param assignto to pass values, but nothing gets updated when I run the action.

 

<apex:dataList value="{!sameCategoryContents}" var="content" styleClass="slides" id="slider2">
<apex:commandLink rerender="page:player-container" action="{!updateCurrentContent}">
<apex:param value="TEST" assignTo="{!currentContentId}" />
<apex:image value="{!content.Sm_Image_URL__c}"
style="width:175px;height:95px; border-radius: 7px; cursor:pointer;" title="{!content.name}" >
</apex:image>
</apex:commandLink>
</apex:dataList>
</apex:outputPanel>

 

And I set the variable in my apex:code

 

    public String currentContentId {get; set;}

 

But I keep clicking on the link in the visualforce but the variable never ever gets updated. Thank you.

Hi  friends,

 

I want to open by VF page in IE 9 compatibitlity mode  on IE 10 I have used this 

 

  <meta http-equiv="X-UA-Compatible" content="IE=9"/> in head

 

bt Unfortunatley its not working .Can Any Body help me to implement  this?????????

 

Thanks in advance

 

  • April 26, 2013
  • Like
  • 0

After editing my apex class from within the Force.com IDE, i clicked "Save" button. Got an error "File saved locally, not to server". How can i get past this errror? Thanks!