Advertisement
eqeqwan21

Untitled

Apr 6th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //файл dim.js
  2. // строчка где-то 58
  3. // найти и заменить это
  4.         $.each(result.rows, function (key, value) {
  5.             $("#maincontrol").append($("<option></option>")
  6.                 .attr("value", value.id)
  7.                 .attr("data-type", value.Type)
  8.                 .attr("data-crc", value.CRC)
  9.                 .text(value.Name));
  10.         });
  11.  
  12. //на это
  13.  
  14. if (environment.login_name.indexOf("_") !== -1) {
  15.         for (let key in result.rows) {
  16.             if (environment.login_name.split('_')[0].toLowerCase().indexOf(result.rows[key].Name.toLowerCase()) !== -1) {
  17.                 $("#maincontrol").append($("<option></option>")
  18.                     .prop("selected", true)
  19.                     .attr("value", result.rows[key].id)
  20.                     .attr("data-type", result.rows[key].Type)
  21.                     .attr("data-crc", result.rows[key].CRC)
  22.                     .text(result.rows[key].Name));
  23.             }
  24.         }
  25.     } else {
  26.         $.each(result.rows, function (key, value) {
  27.             $("#maincontrol").append($("<option></option>")
  28.                 .attr("value", value.id)
  29.                 .attr("data-type", value.Type)
  30.                 .attr("data-crc", value.CRC)
  31.                 .text(value.Name));
  32.         });
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement