Hello Ahmet,
Ahmet Selim Gül have you tried to set close page to no?
Hope this helps,
Good luck!
Hi Ahmet,
Did you try to make OnChange microflow omn DataGrid2 that just removes the association to the Image?
Or on Cancel button, you can add a nanoflow with Javascript action that deselects the option in datagrid2, the code for deselecting is below:
// BEGIN USER CODE
const dataGrid = document.querySelector(".your-grid-name");
const selectedRows = dataGrid.querySelectorAll(".tr-selected");
selectedRows.forEach(row => row.classList.remove("tr-selected"));
// END USER CODE
Let me know if that will work for you!