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


TypeScript dragula.default方法代碼示例

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


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

示例1: ngOnInit

  ngOnInit() {
    // console.log(this.bag);
    let bag = this.dragulaService.find(this.bag);
    let checkModel = () => {
      if (this.dragulaModel) {
        if (this.drake.models) {
          this.drake.models.push(this.dragulaModel);
        } else {
          this.drake.models = [this.dragulaModel];
        }

        if(this.dragulaModelTransform) {
          this.dragulaService.registerModelTransform(this.dragulaModel, this.dragulaModelTransform);
        }
      }
    };
    if (bag) {
      this.drake = bag.drake;
      checkModel();
      this.drake.containers.push(this.container);
    } else {
      this.drake = dragula({
        containers: [this.container]
      });
      checkModel();
      this.dragulaService.add(this.bag, this.drake);
    }
  }
開發者ID:tmakin,項目名稱:ng2-dragula,代碼行數:28,代碼來源:dragula.directive.ts

示例2: ngOnInit

    ngOnInit() {
        let bag = this.dragulaService.find(this.bag);

        if (bag) {
            this.drake = bag.drake;
            this.checkModel();
            this.drake.containers.push(this.container);
        } else {
            this.drake = dragula({
                containers: [this.container]
            });
            this.checkModel();
            this.dragulaService.add(this.bag, this.drake);
        }
    }
開發者ID:asibilia,項目名稱:novo-elements,代碼行數:15,代碼來源:Dragula.ts

示例3: ngOnInit

    ngOnInit() {
        let bag = this.dragulaService.find(this.bag);
        $(this.container).data('dragulamodeldata', this.dragulaModel);

        if (bag) {
            this.drake = bag.drake;
            this.drake.containers.push(this.container);
        } else {
            this.drake = dragula({
                containers: [this.container],
                revertOnSpill: true
            });
            this.dragulaService.add(this.bag, this.drake);
        }
    }
開發者ID:activeperception,項目名稱:ng2-dragula,代碼行數:15,代碼來源:dragula.directive.ts

示例4: ngOnInit

 ngOnInit() {
   let bag = this.dragulaService.find(this.bag);
   let checkModel = () => {
     if (this.dragulaModel) {
       if (this.drake.models) {
         this.drake.models.push(this.dragulaModel);
       } else {
         this.drake.models = [this.dragulaModel];
       }
     }
   };
   if (bag) {
     this.drake = bag.drake;
     checkModel();
     this.drake.containers.push(this.container);
   } else {
     this.drake = dragula({
       containers: [this.container]
     });
     checkModel();
     this.dragulaService.add(this.bag, this.drake);
   }
 }
開發者ID:hsbalar,項目名稱:Preserver,代碼行數:23,代碼來源:dragula.ts

示例5: checkEnter

ďťż/// <reference path="../node_modules/devbridge-autocomplete/typings/jquery-autocomplete/jquery.autocomplete.d.ts" />
///
import { competitorDto, scoreCodeDto, seriesDto } from "./interfaces/server";

import { Guid } from "./guid";
import * as dragula from "dragula";

let competitors: competitorDto[];
declare var scoreCodes: scoreCodeDto[];
const noCodeString = "No Code";

dragula([document.getElementById('results')])
    .on('drop', function () {
        calculatePlaces();
    });

function checkEnter(e: KeyboardEvent) {
    const ev = e || event;
    var txtArea = /textarea/i.test((ev.srcElement).tagName);
    return txtArea || (e.keyCode || e.which || e.charCode || 0) !== 13;
}
export function init() {
    document.querySelector('form').onkeypress = checkEnter;
    $("#raceform").submit(function (e) {
        e.preventDefault();
        var form = this as HTMLFormElement;
        addScoresFieldsToForm(form);
        form.submit();
        removeScoresFieldsFromForm(form);
    });
    loadFleet();
開發者ID:jbfraser1,項目名稱:Sailscores,代碼行數:31,代碼來源:raceEditor.ts

示例6: initDragula

	private initDragula(containers){
		let dragula = Dragula(containers, {});
		dragula.on('drop', function(element, container) {

		});
	}
開發者ID:benjamindehli,項目名稱:Simple-GUI-Template,代碼行數:6,代碼來源:dragable-list.ts


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