The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
29 views

Validation error message shows for all Inputfield in pageblocktable

I have a custom page with standard controller and extension. I have a page block table with inputField to display the account lookup. When the page is submitted with the wrong Account value in account ...
2
votes
3answers
68 views

<apex:inputfield> without SObject bound

There is any way to create an standard input field on VF without bind it to an SObject field ? I was searching on G unsuccessfully. My approach was something like this: <vapex:inputField ...
4
votes
1answer
117 views

Removing dot (thousands separator) in a numeric apex:inputField

I have one field "MyYear__c" on my custmon object. This field has following details: Data Type: Number Length: 4 Decimal Places: 0 At the visualforce page it looks like this: <apex:inputField ...
1
vote
1answer
137 views

Passing disbaled input fields values to apex controller

I have a JavaScript function that fills some apex:inputfields and make them disabled so the user cannot change their values. But it seems that values aren't passed to the controller after an action ...
7
votes
2answers
433 views

Visualforce markup used to display a required password field, with field type “password”

Inside a pageBlock with mode="edit", I'd like to show a required inputField with the type set to "password" instead of "text". When I use inputSecret, even with required="true", it doesn't show the ...
3
votes
2answers
476 views

InputField not editable when in Edit Mode

I am rendering a VF page in Customer Portal and hoping to use inputField. Issue is that the field is not showing as editable, this happens when rendered from the portal (as a portal user) and my in my ...
8
votes
3answers
634 views

Date input taking into account users time zone offset

I have an input field that is binding to a backing Task in the controller to allow users to enter a date into the ActivityDate field. I'm not interested in any other fields on the Task. I'm just ...