2012-05-22 17 views
5

Ember ile ihtiyacım olduğunda yeniden kullanmak için bir kontrol gibi bir iletişim kutusu oluşturmak istiyorum. Dialog, uygulamak için JQuery kütüphanesinin $ ('foo') iletişim fonksiyonunu kullanacaktır. E.x:Ember'de diyaloglar gibi kontroller nasıl oluşturulur?

dialog control in Ember

bana herhangi bir fikir ve örnekler verebilir misiniz. Teşekkürler.

cevap

9

Luke Melia, Ember.js ürününün jQuery UI ile nasıl kullanıldığını gösteren repository modelini oluşturdu.

// Create a new mixin for jQuery UI widgets using the Ember 
// mixin syntax. 
JQ.Widget = Em.Mixin.create({ 
    // as defined in 
    // https://github.com/lukemelia/jquery-ui-ember/blob/master/js/app.js#L9-95 
    ... 
}); 

JQ.Dialog = Ember.View.extend(JQ.Widget, { 
    uiType: 'dialog', 
    uiOptions: 'autoOpen height width'.w(), 

    autoOpen: false, 

    open: function() { 
     this.get('ui').dialog('open'); 
    }, 
    close: function() { 
     this.get('ui').dialog('close'); 
    } 
}); 

diyalog sonra böyle oluşturulur:

var dialog = JQ.Dialog.create({ 
    height: 100, 
    width: 200, 
    templateName: 'dialog-content' 
}); 
dialog.append(); 

Ember.run.later(function(){ 
    dialog.open(); 
}, 1000); 

Luke'un örneği

Baz, ben http://jsfiddle.net/pangratz666/aX7x8/ bakınız bir jQuery UI iletişim temsil eden JQ.Dialog sınıf yarattı


jQuery UI'nin yanı sıra flame.js, Ember.js için bir widget/UI kitaplığı.

// the following code sample has been taken from http://jsfiddle.net/qUBQg/ 
App.TestPanel = Flame.Panel.extend({ 
    layout: { width: 400, height: 200, centerX: 0, centerY: -50 }, 
    // Controls whether all other controls are obscured (i.e. blocked 
    // from any input while the panel is shown) 
    isModal: true, 
    // This controls the visual effect only, and works only if 
    // isModal is set to true 
    dimBackground: true, 
    // Set to false if you want to e.g. allow closing the panel only 
    // by clicking some button on the panel (has no effect if isModal 
    // is false) 
    allowClosingByClickingOutside: true, 
    // Allow moving by dragging on the title bar - default is false 
    allowMoving: true, 
    // Title is optional - if not defined, no title bar is shown 
    title: 'Test Panel', 

    // A Panel must have exactly one child view named contentView 
    contentView: Flame.LabelView.extend({ 
     layout: { left: 20, top: 90, right: 20, bottom: 20 }, 
     textAlign: Flame.ALIGN_CENTER, 
     value: 'This is a panel.' 
    }) 
}); 

// later in the code 
App.TestPanel.create().popup(); 
+0

Teşekkür Pangratz, Ama sadece jQuery kütüphanesinin iletişim ('foo') $ kullanmak gibi basit bir iletişim oluşturmak istiyorum: Bu proje bir Panel için desteği vardır, http://jsfiddle.net/qUBQg/ bkz.. Bana herhangi bir fikir verebilir misiniz? – secretlm

+0

Peki, o zaman sorunuza dikkat etmelisiniz. Güncelleyin ve aslında ne yapmak istediğinizi ekleyin ... – pangratz

+0

Çok teşekkürler, pangratz. – secretlm

İlgili konular