Now print the names

bzr revid: nicolas.vanhoren@openerp.com-20120803123448-jbvyc45gtb7ys7xk
This commit is contained in:
niv-openerp 2012-08-03 14:34:48 +02:00
parent f20b92105f
commit 56227098e4
2 changed files with 40 additions and 1 deletions

View File

@ -120,9 +120,42 @@ openerp.web_linkedin = function(instance) {
return el;
});
lst = lst.concat(plst);
console.log("found", lst.length, lst);
console.log("Linkedin search found:", lst.length, lst);
self.result = lst;
self.display_result();
});
},
display_result: function() {
var self = this;
self.$element.html("<div style='display: table;width:100%'/>");
var i = 0;
var $row;
_.each(self.result, function(el) {
var pc = new instance.web_linkedin.PeopleCompany(self, el);
if (i % 5 === 0) {
$row = $("<div style='display: table-row;width:100%'/>");
$row.appendTo(self.$(">div"));
}
pc.appendTo($row);
pc.$element.css("display", "table-cell");
i++;
});
},
});
instance.web_linkedin.PeopleCompany = instance.web.Widget.extend({
template: "PeopleCompany",
init: function(parent, data) {
this._super(parent);
this.data = data;
},
start: function() {
if (this.data.__type === "company") {
this.$("h3").text(this.data.name);
} else { // people
this.$("h3").text(_.str.sprintf("%s %s", this.data.firstName, this.data.lastName));
}
},
});
};
// vim:et fdc=0 fdl=0:

View File

@ -12,4 +12,10 @@
</script>
</div>
</t>
<t t-name="PeopleCompany">
<div>
<h3 />
<img />
</div>
</t>
</templates>