JsBlueprintSpec
Specification
BLUEPRINT(uuid, prototype attributes, prototype factory);
Arguments
uuid string
prototype attributes object literal
prototype factory function
Sample Specification
BLUEPRINT(
"~0169729ED9947D4f2dAF5B1C81D6CD4C26",
{
"iterms" : [
["%startup", "onStartUp", 1],
["trigger_in", "onTrigger", 1]
],
"oterms" : [
"startup_message_out",
"triggered_message_out"
],
"properties" : [
"message"
],
"name" : "Send Message"
},
function(Class)
{
Class.prototype._onInit = function(props)
{
this._msg = props["message"];
if (this._msg === undefined) {
this._msg = this.dom_node.innerHTML;
}
};
Class.prototype.onStartUp = function(msg)
{
this.postMessage("startup_message_out", this._msg);
};
Class.prototype.onTrigger = function(msg)
{
this.postMessage("triggered_message_out", this._msg);
};
return Class;
});
Wiki Pages
- AboutEform
- AdvancedExamples
- AlertInfotron
- AtomicConstructor
- BulletList
- ButtonInfotron
- ConstructorInfotron
- ContactTheMaintainers
- Dataflow Design Patterns
- DataflowDesignPatterns
- Demo43
- DemoButton
- DemoClock
- DemoEvDb
- DemoForm
- demoHierarchicalEncapsulation
- demoHttp
- DemoMap
- DemoMultiMap
- demoPhotobucketAndWebshot
- demoRssFeeds
- demoRssFeedsTimeline
- DemoSlideShow
- DemoStickyNote
- DemosWalkThrough
- demoYahooSearch
- EformMapperInfotron
- EformRouterInfotron
- EformWrapperInfotron
- EvolutionOfJDA
- FeedMagickInfotron
- FormInfotron
- FourPortRouterInfotron
- GettingStarted
- HowJdaWorks
- HtmlBlueprintSpec
- HtmlInfotron
- HtmlPagerInfotron
- HttpProxyInfotron
- IDA
- ImageInfotron
- InfotronDoc
- JDA Propaganda
- JdaCapabilities
- JdaIncapabilities
- JdaQuotes
- JdaResources
- JdaUsage
- JohnResigJsonRssToCollection
- JsBlueprintSpec
- JsonCallbackInfotron
- JsonXmlFilter
- JsStarDoc
- ListRouterInfotron
- OptionSelectorInfotron
- PasteboardInfotron
- PatternsForLoadingDependencies
- ScratchPad
- SendMessageInfotron
- SendMessagesInfotron
- SequenceMatcherInfotron
- SimpleGoogleMapInfotron
- SimpleYahooMapInfotron
- SlideShowInfotron
- SnifferInfotron
- StaticCalendarInfotron
- StickNotesInfotron
- TabularListingInfotron
- TextInfotron
- TextScrapListerInfotron
- TimeLineInfotron
- TimerInfotron
- Troubleshoot
- TwoStringJoinerInfotron
- UnofficialBlueprints
- UpcoingOrgInfotron
- XmlToEformInfotron
- YahooJsonInfotron
Space Home