/** * */ function newExtra(id, name, price) { var extra = { id:id, name:name, price: price, createTableStructureLine:function (depth,audiofiles) { if (id != null) { var trline = "" + "" + "" + "" + "" + "" + ""; return trline; } else { var trline = "" + "" + "" + "" + ""; return trline; } }, insertValuesIntoMenuTable:function() { $("#extra_" + this.id + " input.extraname").val(this.name); if (this.price != null) { $("#extra_" + this.id + " input.extraprice").val(this.price); } }, createApplyArea:function(idApply) { var txt = '

' + '
' + '

'; return txt; }, }; return extra; }