Hi.


I use PagingToolBar to move back and Forward record using the related store:
FormPanel Section:
<ext:PagingToolbar ID="FormPanel_toolbar" StoreID="Store1" runat="server"  DisplayInfo="false"  HideRefresh="true" />

Store Section:
  <DataChanged 
                    Handler="var record = this.getAt(0) || {};#{FormPanel}.getForm().loadRecord(record);  " 
                    Delay="10"  
    />
How can I set DirtyField (not native in FormPanel) when I changed data in FormPanel in order to start the codebehind saving routine (SQL Update)?

Thanks.