cancel
Showing results for 
Search instead for 
Did you mean: 

How to detect changed fields only in admin section?

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

How to detect changed fields only in admin section?

I need to insert some values to custom database table based on the values of changed custom field, if the specific custom field value (in a custom shipping method) had changed.I need to check this in my Observer.php event that I'm firing is 

admin_system_config_changed_section_carriers

is there any possible way to do this ?

 

_______________________________________________
An Expert in Anything Was Once a Beginner
1 REPLY 1

Re: How to detect changed fields only in admin section?

yes, find out the save_after event of your custom modle(usually your_model_name_save_after), and setup an admin observer in config.xml of your custom module

 

<adminhtml>
        <events>
            <your_model_save_after>
                <observers>
                    <yourObserver>
                        <type>model</type>
                        <class>yourmodule/observer</class>
                        <method>yourMethod</method>
                    </yourObserver>
                </observers>
            </your_model_save_after>
    </events>
</adminhtml>