LWSChad Posted September 12, 2015 Report Share Posted September 12, 2015 Hello, Recently Inline Delete has stopped working because the confirmation popup doesn't escape the iframe from which it originates, so confirming a delete request is no longer possible. Please see attached image => Can anybody think of a way to fix this? Thanks! Quote Link to comment Share on other sites More sharing options...
ChrisCarlson Posted September 12, 2015 Report Share Posted September 12, 2015 Yes, I have the same issue and have submitted a support ticket. As a workaround I increased iframe size to accommodate confirm message and buttons, but you may not have the liberty to do so based on your app frames layout. Quote Link to comment Share on other sites More sharing options...
Jan Posted September 16, 2015 Report Share Posted September 16, 2015 Hello, As a temporary solution, you can add a Header&Footer element, select the Header, click the Source button and enter the following code: <style type="text/css"> #Alert { top: -45px !important; } </style> The confirmation message is moved up and buttons are displayed. You can enter your value instead of "-45", if buttons are not displayed still. Also you can move the message to the left: <style type="text/css"> #Alert { top: -45px !important; left: -100px !important; } </style> I am not sure that it is a good solution, but maybe it can help. Quote Link to comment Share on other sites More sharing options...
LWSChad Posted September 24, 2015 Author Report Share Posted September 24, 2015 Hello, As a temporary solution, you can add a Header&Footer element, select the Header, click the Source button and enter the following code: <style type="text/css"> #Alert { top: -45px !important; } </style> The confirmation message is moved up and buttons are displayed. You can enter your value instead of "-45", if buttons are not displayed still. Also you can move the message to the left: <style type="text/css"> #Alert { top: -45px !important; left: -100px !important; } </style> I am not sure that it is a good solution, but maybe it can help. Thanks Jan, I was able to use your approach to enable records being deleted! It's far from perfect, but at least it's functional now Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.