Page 4 of 8
jquery popup as confirmation
Posted: Mon Feb 03, 2014 8:27 pm
by Kartik A
I am using the code provided by Maryna Brodina above to create a alert popup and it works great. But its showing "Back" button in the header of the alert popup. Please advise how to remove "Back" button from the alert popup header.
jquery popup as confirmation
Posted: Mon Feb 03, 2014 8:42 pm
by Kartik A
I even tried setting attribute "data-add-back-btn" to false in the header but it still show back button.
jquery popup as confirmation
Posted: Mon Feb 03, 2014 8:42 pm
by Kartik A
jquery popup as confirmation
Posted: Mon Feb 03, 2014 8:43 pm
by Kartik A
I am using the code provided by Maryna Brodina above to create a alert popup and it works great. But its showing "Back" button in the header of the alert popup. Please advise how to remove "Back" button from the alert popup header.
I even tried setting attribute "data-add-back-btn" to false in the header but it still show back button.
jquery popup as confirmation
Posted: Mon Feb 03, 2014 9:33 pm
by Maryna Brodina
Hello @ciccio!
500 (Error Executing Database Query) has nothing to do with jquery popup, please review your app logic. If you didn't find anything try to run code on Value Change event on timeout.
jquery popup as confirmation
Posted: Mon Feb 03, 2014 9:35 pm
by Maryna Brodina
Hello @Kartik A! What HTML code did you add to HTML component of custom component?
jquery popup as confirmation
Posted: Mon Feb 03, 2014 9:37 pm
by Kartik A
jquery popup as confirmation
Posted: Mon Feb 03, 2014 9:56 pm
by Kartik A
jquery popup as confirmation
Posted: Mon Feb 03, 2014 9:57 pm
by Maryna Brodina
jquery popup as confirmation
Posted: Mon Feb 03, 2014 9:59 pm
by Kartik A
code
<div data-role="popup" data-dismissible="false" data-overlay-theme="a" data-theme="h" style="max-width:400px;" class="ui-corner-all myDialog">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1 class="dlg_caption"> </h1>
<>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<h3 class="dlg_title"> </h3>
<p class="dlg_text"> </p>
<a href="#" data-role="button" class="okButton" data-inline="true" data-theme="c">OK</a>
<a href="#" class="noButton" data-role="button" data-inline="true" data-transition="flow" data-theme="b">NO</a>
<a href="#" class="cancelButton" data-role="button" data-inline="true" data-transition="flow" data-theme="b">Cancel
</a>
<>
<>
/code