Hallo,
ich überschreibe gerade den Options bereich im Blog im Backend, nun brauche ich für das Speichern der Attribute die ID vom aktuellen Blog. Wie erhalte ich diese ?
Und ist folgender Code richtig um das zu speichern ?
Ext.Ajax.request({
method: 'POST',
url: '{url controller=AttributeData action=saveData}',
params: {
_foreignKey: me.record.get('id'),
_table: 's_blog_attributes',
__attribute_ec_CategoryId: newValue
}
});