To open entity to the same page, create a new constructor in FormPage with SynchronizeEntity . This will refresh the form after a new row is selected from master page grid. public FormPage(SynchronizeEntity syncEntity) :base(true, syncEntity) { InitializeComponent(); InitPage(api); } private void SetHeader() { if (editrow == null) return; var header = string.Format(“{0}:{1}”, Uniconta.ClientTools.Localization.lookup(“DebtorAccount”), editrow._Account); SetHeader(header); } […]