Replace old dialog delete dialog with new dialog in addressbook edit popup

This commit is contained in:
Hadi Nategh 2013-11-29 14:52:52 +00:00
parent ce226a3197
commit 8f45c0e639
2 changed files with 27 additions and 6 deletions

View File

@ -78,6 +78,27 @@ app.classes.addressbook = AppJS.extend(
});
},
/**
* Creat a dialog for delete action in edit popup window.
*
* @param _action
* @param _senders
*
*/
delete_contact: function(_action, _senders)
{
var that = this;
var buttonId = _senders.id;
var callbackDeleteDialog = function (button_id)
{
if (button_id == et2_dialog.YES_BUTTON )
{
that.et2._inst.submit(buttonId);
}
}
et2_dialog.show_dialog(callbackDeleteDialog, this.egw.lang("Do you really want to delete this contact?"),this.egw.lang("Delete"), {},et2_dialog.BUTTONS_YES_NO_CANCEL, et2_dialog.WARNING_MESSAGE);
},
/**
* Add appointment or show calendar for selected contacts, call default nm_action after some checks
*

View File

@ -114,12 +114,12 @@
<textbox id="adr_one_street" size="45" maxlength="64"/>
</row>
<row>
<description/>
<textbox statustext="address line 2" id="adr_one_street2" size="45" maxlength="64"/>
</row>
<row disabled="@addr_format=city_state_postcode">
<description for="adr_one_locality" value="city"/>
<hbox options="0,0">
<textbox statustext="ZIP Code" id="adr_one_postalcode" size="5" maxlength="64"/>
@ -135,12 +135,12 @@
<textbox id="adr_one_countryname" class="custom_country"/>
</hbox>
</row>
<row disabled="@addr_format=city_state_postcode">
<description value="Region"/>
<textbox statustext="State" id="adr_one_region" size="19" maxlength="64" class="leftPad5"/>
</row>
<row disabled="!@addr_format=city_state_postcode">
<description/>
<description value="City"/>
@ -636,9 +636,9 @@
<button label="Apply" id="button[apply]" class="button_apply" image="apply" background_image="1"/>
<button label="Cancel" id="button[cancel]" class="button_cancel" onclick="if($cont[view] || false) return true; self.close(); return false;" image="cancel" background_image="1"/>
<checkbox statustext="Apply changes to all members, whose fields have the same previous content" label="change all organisation members" id="change_org" span="all"/>
<button align="left" label="Delete" id="button[delete]" class="button_delete" onclick="return confirm('Are you shure you want to delete this contact?');" tabindex="25" image="delete" background_image="1"/>
<button align="left" label="Delete" id="button[delete]" class="button_delete" onclick="app.addressbook.delete_contact" tabindex="25" image="delete" background_image="1"/>
</hbox>
</row>
</rows>
</grid>