• Piotr R Sobczak
  • NEWBIE
  • 10 Points
  • Member since 2015
  • Software Consultant

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

Hi,
I'm trying to update a field on a custom object on site.

 

I have sth like this

<apex:page standardController="Some_custom_object__c">
    <apex:form>
        <apex:inputField value="{!Some_custom_object__c.status__c}"/>
        <apex:commandButton action="{!save}" value="save"/>
    </apex:form>
</apex:page>

After clicking save button page is refreshed without any error but field is not updated.

It is simplified example I was trying to do similar update from within an extension controller action without success...

Any idea ?

Thanks

Hi,
I'm trying to update a field on a custom object on site.

 

I have sth like this

<apex:page standardController="Some_custom_object__c">
    <apex:form>
        <apex:inputField value="{!Some_custom_object__c.status__c}"/>
        <apex:commandButton action="{!save}" value="save"/>
    </apex:form>
</apex:page>

After clicking save button page is refreshed without any error but field is not updated.

It is simplified example I was trying to do similar update from within an extension controller action without success...

Any idea ?

Thanks