7 /phenome/assign_owner.mas - a component for displaying object (locus/stock etc) owner form
22 the type of the object (e.g. 'locus', 'stock')
26 defaults to 'object_owners'
32 Naama Menda <nm249@cornell.edu>
42 $owners_div => 'object_owners'
45 <div id = "<% $owners_div %>" > Loading..</div>
47 <script language="javascript">
49 jQuery(document).ready(function() {
51 display_owners("<% $owners_div %>");
53 function display_owners(owners_div) {
54 jQuery.ajax( { url: "/<% $object_type %>/<% $object_id %>/owners" , dataType: "json",
55 success: function(response) {
56 jQuery("#"+owners_div).html(response.html);