X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widgets.js;h=c2795dbc8b9c75a2748d31cf9d07071652c5ce6d;hb=c6cff5a726e217e9c35f7fca0ecbfb931df7d393;hp=2056c484bfa480cff0646aa577bd3540b65da036;hpb=b0aa9bab78f0357d90040cbfbc1f25d4bdcddeb1;p=mkws-moved-to-github.git diff --git a/src/mkws-widgets.js b/src/mkws-widgets.js index 2056c48..c2795db 100644 --- a/src/mkws-widgets.js +++ b/src/mkws-widgets.js @@ -1,5 +1,11 @@ // Factory function for widget objects. function widget($, team, type, node) { + // Static register of attributes that do not contribute to config + var ignoreAttrs = { + id:1, class:1, style:1, name:1, action:1, type:1, size:1, + value:1, width:1, valign:1 + }; + var that = { team: team, type: type, @@ -16,6 +22,26 @@ function widget($, team, type, node) { return '[Widget ' + team.name() + ':' + type + ']'; }; + for (var i = 0; i < node.attributes.length; i++) { + var a = node.attributes[i]; + if (a.name === 'data-mkws-config') { + // Treat as a JSON fragment configuring just this widget + log(node + ": parsing config fragment '" + a.value + "'"); + var data = $.parseJSON(a.value); + for (var key in data) { + log(node + ": adding config element " + key + "='" + data[key] + "'"); + that.config[key] = data[key]; + } + } else if (a.name.match (/^data-mkws-/)) { + var name = a.name.replace(/^data-mkws-/, '') + that.config[name] = a.value; + log(node + ": set data-mkws attribute " + name + "='" + a.value + "'"); + } else if (!ignoreAttrs[a.name]) { + that.config[a.name] = a.value; + log(node + ": set regular attribute " + a.name + "='" + a.value + "'"); + } + } + var fn = mkws.promotionFunction(type); if (fn) { fn.call(that);