doif.js 500 B

1234567891011121314
  1. FW_version["doif.js"] = "$Id: doif.js 15353 2017-10-30 12:47:07Z Ellert $";
  2. function doifUpdateCell(doifname,attrname,attrcont,content,style) {
  3. $("table[uitabid='DOIF-"+doifname+"']").find("div["+attrname+"='"+attrcont+"']").each(function() {
  4. if(this.setValueFn) { // change widget value
  5. this.setValueFn(content.replace(/\n/g, '\u2424'));
  6. } else {
  7. $(this).html(content+"");
  8. if(style)
  9. $(this).attr("style",style);
  10. }
  11. });
  12. }