Changeset 2261 in subversion
- Timestamp:
- Jan 24, 2009 7:59:25 AM (4 years ago)
- File:
-
- 1 edited
-
branches/devel-api/program/js/app.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/devel-api/program/js/app.js
r2260 r2261 2736 2736 // update a contact record in the list 2737 2737 this.update_contact_row = function(cid, cols_arr) 2738 {2738 { 2739 2739 var row; 2740 if (this.contact_list.rows[cid] && (row = this.contact_list.rows[cid].obj)) 2741 { 2740 if (this.contact_list.rows[cid] && (row = this.contact_list.rows[cid].obj)) { 2742 2741 for (var c=0; c<cols_arr.length; c++) 2743 $(row.cells[c]).html(cols_arr[c]); 2742 if (row.cells[c]) 2743 $(row.cells[c]).html(cols_arr[c]); 2744 2744 2745 2745 return true; 2746 }2746 } 2747 2747 2748 2748 return false; 2749 };2749 }; 2750 2750 2751 2751
Note: See TracChangeset
for help on using the changeset viewer.
