2011-01-25 20:57:47 +01:00
|
|
|
/**
|
|
|
|
* @provides javelin-behavior-differential-populate
|
2011-01-26 00:19:06 +01:00
|
|
|
* @requires javelin-lib-dev
|
2011-01-25 20:57:47 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
JX.behavior('differential-populate', function(config) {
|
|
|
|
|
|
|
|
function onresponse(target, response) {
|
|
|
|
JX.DOM.replace(JX.$(target), JX.HTML(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var k in config.registry) {
|
2011-02-01 05:38:13 +01:00
|
|
|
new JX.Request(config.uri, JX.bind(null, onresponse, k))
|
2011-01-25 20:57:47 +01:00
|
|
|
.setData({
|
2011-02-01 05:38:13 +01:00
|
|
|
id: config.registry[k][0],
|
2011-01-25 20:57:47 +01:00
|
|
|
against: config.registry[k][1],
|
|
|
|
whitespace: config.whitespace
|
|
|
|
})
|
|
|
|
.send();
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|