當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ItemSliding.close方法代碼示例

本文整理匯總了TypeScript中ionic-angular.ItemSliding.close方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ItemSliding.close方法的具體用法?TypeScript ItemSliding.close怎麽用?TypeScript ItemSliding.close使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ionic-angular.ItemSliding的用法示例。


在下文中一共展示了ItemSliding.close方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: renameItem

	renameItem(item, slidingItem: ItemSliding): void {
		let prompt = Alert.create({
			title: 'Rename Item',
			message: 'Enter the new name of the task for this checklist below:',
			inputs: [
				{
					name: 'name'
				}
			],
			buttons: [
				{
					text: 'Cancel'
				},
				{
					text: 'Save',
					handler: data => {
						this.checklist.renameItem(item, data.name);
					}

				}
			]
		});

		this.nav.present(prompt);
		
		slidingItem.close();
	}
開發者ID:johncclayton,項目名稱:campermate,代碼行數:27,代碼來源:checklist.ts

示例2: deleteContact

  deleteContact(contactId: string, slidingItem: ItemSliding): void {
    let options = {
      title: '',
      message: '',
      buttons: [{
        text: '',
        handler: () => {
          this.contactServ.deleteContact(contactId);
        }
      }, {
        text: '',
        role: 'cancel'
      }]
    };

    this.localeServ.localize('CONTACT_LIST.DELETE.TITLE',   (value:string) => { options.title = value; });
    this.localeServ.localize('CONTACT_LIST.DELETE.MESSAGE', (value:string) => { options.message = value; });
    this.localeServ.localize('CONTACT_LIST.DELETE.CONFIRM', (value:string) => { options.buttons[0].text = value; });
    this.localeServ.localize('CONTACT_LIST.DELETE.CANCEL',  (value:string) => { options.buttons[1].text = value; });

    let confirm = this.alertCtrl.create(options);
    confirm.present();
    slidingItem.close();
  }
開發者ID:qwb0920,項目名稱:MyDiary,代碼行數:24,代碼來源:contact-list.ts

示例3: updateContact

 updateContact(contactId: string, contact: IContact, slidingItem: ItemSliding) {
   this.navCtrl.push(ContactEditPage, {contactId, contact});
   slidingItem.close();
 }
開發者ID:qwb0920,項目名稱:MyDiary,代碼行數:4,代碼來源:contact-list.ts

示例4: edit

	edit(tree: Tree, item: ItemSliding) {
		this.treeService.edit(tree);
		item.close();
	}
開發者ID:xuender,項目名稱:family,代碼行數:4,代碼來源:tree-list.ts

示例5: deleteTodo

 deleteTodo(slidingItem: ItemSliding, todo: Todo) {
   slidingItem.close();
   this.todoProvider.deleteTodo(todo);
 }
開發者ID:Darkmarus,項目名稱:blog,代碼行數:4,代碼來源:home.ts

示例6: editTodo

 editTodo(slidingItem: ItemSliding, todo: Todo) {
   slidingItem.close();
   this.navCtrl.push(EditPage, {
     todo: todo
   });
 }
開發者ID:Darkmarus,項目名稱:blog,代碼行數:6,代碼來源:home.ts

示例7: updateDiary

 updateDiary(diaryId: string, diary: IDiary, slidingItem: ItemSliding) {
   this.modalCtrl.create(DiaryEditPage, {diaryId, diary}).present();
   slidingItem.close();
 }
開發者ID:qwb0920,項目名稱:MyDiary,代碼行數:4,代碼來源:diary-list.ts

示例8:

 handler: () => {
   item.close();
 }
開發者ID:meumobi,項目名稱:infomobi,代碼行數:3,代碼來源:anniversaries.ts

示例9: updateMemo

 updateMemo(memoId: string, title: string, slidingItem: ItemSliding) {
   this.navCtrl.push(MemoEditPage, {memoId, title});
   slidingItem.close();
 }
開發者ID:qwb0920,項目名稱:MyDiary,代碼行數:4,代碼來源:memo-list.ts


注:本文中的ionic-angular.ItemSliding.close方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。