• Mike Pard
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 5
    Replies
Hi all,

The problem is that spanish accents doesn´t work in the title of the components

For example the next code:
 
<apex:pageBlockSection title="II. Informaci&oacute;n inicial sobre la entidad" columns="1">


It renders  
II. Informaci&#243;n inicial sobre la entidad


In the title of the component 

I am working with Eclipse Java EE IDE for Web Developers. Version: Juno Service Release 1
I have installed the Force.com IDE plugin


In my VisualForce Page I have the next html code 
 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta http-equiv="Content-Language" content="es" />

Also, in the Properties --->  Resource --> Text file enconding section of my Visual Force Page section  I have selected the UTF-8 type

This is a very specific problem because it just happens in the title of the components, in the html normal text , it works very well.

So, i hope someone be able to help me

Thank you in advance

Best regards!!!



 
Hi all,

The problem is that spanish accents doesn´t work in the title of the components

For example the next code:
 
<apex:pageBlockSection title="II. Informaci&oacute;n inicial sobre la entidad" columns="1">


It renders  
II. Informaci&#243;n inicial sobre la entidad


In the title of the component 

I am working with Eclipse Java EE IDE for Web Developers. Version: Juno Service Release 1
I have installed the Force.com IDE plugin


In my VisualForce Page I have the next html code 
 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta http-equiv="Content-Language" content="es" />

Also, in the Properties --->  Resource --> Text file enconding section of my Visual Force Page section  I have selected the UTF-8 type

This is a very specific problem because it just happens in the title of the components, in the html normal text , it works very well.

So, i hope someone be able to help me

Thank you in advance

Best regards!!!



 

Hi All,

 

I would like to capture the lookup field value in the apex controller.

 

VF page

<apex:inputField value="{!Object__c.lookupFiled__c}"/>

 

Apex controller..

 

here i am getting the lookup value as ID but i want to get it as value(Text).

 


Is there any way that we can get it on apex controller.

 

Thanks

Rakesh

I am using a custom controller(Not extension controller) for a VF page. That VF page has a lookup to Accounts. I want the selected lookup field value in my controller. I am using actionSupport for this(On change of lookup).

 

Any help?

I'm trying to get an actionSupport to work with a lookup field.

Code:
<apex:inputField id="adviser" value="{!claimNotification.Adviser__c}">
 <apex:actionSupport action="{!updateAdviserDetails}" event="onchange" immediate="false" status="stat" rerender="adviserEmail,adviserPhone,adviserFax" />
</apex:inputField>



It works if I type the name of the new adviser in the textbox and tab out of the field but does not work if I click the search button next to the lookup field and select a new adviser that way.

How do I trigger the actionSupport when the search button is clicked?