Hello, i'm using scheduler pro component and i want to know if is it possible to put value on "Repórter" and "Editor Texto" field automatically when i select one value from combofield "Retranca"?
I can get the value, but i can't put the value on the respective field.
this.schedulerpro.eventStore.on('change', (e) => {
if (
e.action === 'update' &&
Object.keys(e.changes).includes('retranca')
) {
const selectedRetranca = e.changes['retranca'].value;
const [{ reporter }] = retrancas.filter((retranca) => {
if (retranca.name === selectedRetranca) {
return retranca;
}
});
}