ФорумСообществоПрофессиональная деятельностьПредлагаю работу → Помогите в модернизации ГОТОВОГО ПРОЕКТА.

Помогите в модернизации ГОТОВОГО ПРОЕКТА.

  • morley100

    Сообщения: 5 Репутация: N Группа: Кто попало

    Spritz 10 июня 2014 г. 13:48

    Привет всем. Вообщем есть готовый локальный проект для одной организации. Все работает но необходимо внести некоторые коррективы, а именно внедрить раскрывающийся списки в столбцах таблицы "марка кабеля", "завод", "НГДУ", "месторождение", "куст", "скважина" (наряда-задания) там стоит автозаполнение ячеек (и то не всех), (autocomplite). Необходимо при клике мыши чтобы этот список раскрывался. Вот пример кода, но опять же он связан и с другими я так понимаю файлами… все они есть, только не знаю где и что изменять. Помогите кто что знает. Заранее благодарствую.


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style media="all">
    * {
    font-size: 7pt;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    }
    .left_bold {
    border-left-width:2pt !important;
    }
    .right_bold {
    border-right-width:2pt !important;
    }
    .top_bold {
    border-top-width:2pt !important;
    }
    .bottom_bold {
    border-bottom-width:2pt !important;
    }
    body {
    text-align: center;
    /*margin: 5pt;*/
    line-height: 1.3em;
    }
    .border_cell {
    border: 1px solid #000000;
    }
    td {
    width:3.3%;
    text-align: center;
    }
    td.header {
    font-size:7pt;
    }
    hr {
    height: 0px;
    border: 1pt solid #000;
    margin: 7pt 0pt;
    }
    </style>
    <style media="screen">
    .buttons {
    text-align:right;
    }
    input {
    width: 98%;
    height: 98%;
    padding: 0.2em 0;
    text-align: center;
    vertical-align:middle;
    border: 0px none #fff;
    background-color: #dfecf7;
    }
    .not_printable {
    border: 1px solid #F00;
    background-color:#FF0;
    }
    </style>
    <style media="print">
    .buttons {
    display:none;
    }
    .not_printable {
    display:none;
    }
    input {
    width: 98%;
    height: 98%;
    padding: 0;
    text-align: center;
    vertical-align:middle;
    border: 0px none #fff;
    background-color: #fff;
    }
    </style>
    <title>Наряд-задание № %doc_num% на изготовление, ремонт и дефектацию кабельной линии</title>
    <link type="text/css" href="css/cupertino/jquery-ui-1.8.5.custom.css" rel="stylesheet" />
    <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui-1.8.5.custom.min.js"></script>
    <script type="text/javascript" src="js/i18n/jquery.ui.datepicker-ru.js"></script>
    <script type="text/javascript" src="js/jquery.maskedinput-1.3.min.js"></script>
    <script>
    $(function() {
    $("#doc_time").mask("99:99", {placeholder:" "});
    $("#fin_time").mask("99:99", {placeholder:" "});
    $("#submit_btn").button({
    icons: {
    primary: "ui-icon-disk"
    }
    });
    $("#submit_btn").click(function() {$("#submit_btn").attr('disabled', 'disabled'); document.forms[0].submit(); return false;});
    $("#print_btn").button({
    icons: {
    primary: "ui-icon-print"
    }
    });
    $("#print_btn").click(function() {window.print(); return false; });
    $("#cancel_btn").button({
    icons: {
    primary: "ui-icon-close"
    }
    });
    $("#cancel_btn").click(function() { window.close(); return false; });
    $.datepicker.setDefaults($.datepicker.regional["ru"]);
    $("#doc_date").datepicker({
    changeMonth: true,
    changeYear: true,
    showWeek: true,
    showButtonPanel: true,
    showAnim: 'drop',
    showOtherMonths: true,
    selectOtherMonths: true
    });
    $("#fin_date").datepicker({
    changeMonth: true,
    changeYear: true,
    showWeek: true,
    showButtonPanel: true,
    showAnim: 'drop',
    showOtherMonths: true,
    selectOtherMonths: true
    });
    for(var i=0;i<10;i++){
    $("#def\\[3\\]\\["+i+"\\]").datepicker({
    changeMonth: true,
    changeYear: true,
    showWeek: true,
    showButtonPanel: true,
    showAnim: 'drop',
    showOtherMonths: true,
    selectOtherMonths: true,
    dateFormat: "mm.yy"
    });
    }
    for(var i=0;i<9;i++){
    $("#repair\\[5\\]\\["+i+"\\]").datepicker({
    changeMonth: true,
    changeYear: true,
    showWeek: true,
    showButtonPanel: true,
    showAnim: 'drop',
    showOtherMonths: true,
    selectOtherMonths: true,
    dateFormat: "mm.yy"
    });
    }
    $("#cabler_s").autocomplete({
    source: function( request, response ) {
    $.getJSON("list_workers.php?q=0&wt=1&_search=true&rows=10&searchField=last_name&searchString="+encodeURI(request.term),
    function(data){
    if(data.records>0){
    response( $.map(data.rows, function(item) {
    return {
    label: item.cell[0]+' '+item.cell[1]+' '+item.cell[2],
    value: item.cell[0]+' '+item.cell[1][0]+'.'+item.cell[2][0]+'.'
    }
    }))};
    })
    },
    minLength: 1,
    open: function() {
    $(this).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
    $(this).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    },
    select: function( event, ui ) {
    $("#cabler").val(ui.item.value);
    $("#cabler2").val(ui.item.value);
    ui.item.value=ui.item.label;
    }
    });
    $("#cabler").autocomplete({
    source: function( request, response ) {
    $.getJSON("list_workers.php?q=0&wt=1&_search=true&rows=10&searchField=last_name&searchString="+encodeURI(request.term),
    function(data){
    if(data.records>0){
    response( $.map(data.rows, function(item) {
    return {
    label: item.cell[0]+' '+item.cell[1]+' '+item.cell[2],
    value: item.cell[0]+' '+item.cell[1][0]+'.'+item.cell[2][0]+'.'
    }
    }))};
    })
    },
    minLength: 1,
    open: function() {
    $(this).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
    $(this).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    },
    select: function( event, ui ) {
    $("#cabler").val(ui.item.value);
    }
    });
    $("#cabler2").autocomplete({
    source: function( request, response ) {
    $.getJSON("list_workers.php?q=0&wt=1&_search=true&rows=10&searchField=last_name&searchString="+encodeURI(request.term),
    function(data){
    if(data.records>0){
    response( $.map(data.rows, function(item) {
    return {
    label: item.cell[0]+' '+item.cell[1]+' '+item.cell[2],
    value: item.cell[0]+' '+item.cell[1][0]+'.'+item.cell[2][0]+'.'
    }
    }))};
    })
    },
    minLength: 1,
    open: function() {
    $(this).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
    $(this).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    },
    select: function( event, ui ) {
    $("#cabler").val(ui.item.value);
    }
    });
    $("#master").autocomplete({
    source: function( request, response ) {
    $.getJSON("list_workers.php?q=0&wt=2&_search=true&rows=10&searchField=last_name&searchString="+encodeURI(request.term),
    function(data){
    if(data.records>0){
    response( $.map( data.rows, function(item) {
    return {
    label: item.cell[0]+' '+item.cell[1]+' '+item.cell[2],
    value: item.cell[0]+' '+item.cell[1][0]+'.'+item.cell[2][0]+'.'
    }
    }))};
    })
    },
    minLength: 1,
    open: function() {
    $(this).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
    $(this).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    }
    });
    $("#master2").autocomplete({
    source: function( request, response ) {
    $.getJSON("list_workers.php?q=0&wt=2&_search=true&rows=10&searchField=last_name&searchString="+encodeURI(request.term),
    function(data){
    if(data.records>0){
    response( $.map( data.rows, function(item) {
    return {
    label: item.cell[0]+' '+item.cell[1]+' '+item.cell[2],
    value: item.cell[0]+' '+item.cell[1][0]+'.'+item.cell[2][0]+'.'
    }
    }))};
    })
    },
    minLength: 1,
    open: function() {
    $(this).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
    $(this).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    }
    });
    $("#controler").autocomplete({
    source: function( request, response ) {
    $.getJSON("list_workers.php?q=0&wt=3&_search=true&rows=10&searchField=last_name&searchString="+encodeURI(request.term),
    function(data){
    if(data.records>0){
    response( $.map( data.rows, function(item) {
    return {
    label: item.cell[0]+' '+item.cell[1]+' '+item.cell[2],
    value: item.cell[0]+' '+item.cell[1][0]+'.'+item.cell[2][0]+'.'
    }
    }))};
    })
    },
    minLength: 1,
    open: function() {
    $(this).removeClass("ui-corner-all").addClass( "ui-corner-top" );
    },
    close: function() {
    $(this).removeClass("ui-corner-top").addClass( "ui-corner-all" );
    }
    });
    $("#lables_s").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['есть','нет'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#label").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['есть','нет'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#muft_type_s").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['Б46(130)20/10','Б46(130)30/10','Б46(120)20/16','Б46(120)25/16',
    'Б46(120)35/16','Б46(120)40/16','Б46(120)50/16','УКМ36(230)30/10','УКН36(230)10/25',
    'УКН36(230)13/25','УКН36(230)16/50','УБ10/20','УБ10/25','УБ13/20','УБ13/25','УБ13/30',
    'УБ16/35','УБ16/50','УБ46(230)30/10','2У15-25/10','УБ50(230)40/10','УБ55(230)40/13'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#muft_type").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['Б46(130)20/10','Б46(130)30/10','Б46(120)20/16','Б46(120)25/16',
    'Б46(120)35/16','Б46(120)40/16','Б46(120)50/16','УКМ36(230)30/10','УКН36(230)10/25',
    'УКН36(230)13/25','УКН36(230)16/50','УБ10/20','УБ10/25','УБ13/20','УБ13/25','УБ13/30',
    'УБ16/35','УБ16/50','УБ46(230)30/10','2У15-25/10','УБ50(230)40/10','УБ55(230)40/13'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#new_not_s").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['нов','б/у'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#new_not").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['нов','б/у'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#type_s").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КПпБП-120 3х16', 'КПпБПТ-120 3х16', 'КЕСБПТ-230 3х16', 'КЭСБП-230 3х16', 'КИФБП-230 3х16', 'СТТ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#c_type").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КПпБП-120 3х16', 'КПпБПТ-120 3х16', 'КЕСБПТ-230 3х16', 'КЭСБП-230 3х16', 'КИФБП-230 3х16', 'СТТ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#ngdu").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['БН', 'СН'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#place").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КР', 'ВЧ', 'БС', 'ЗСЛ', 'СЮР', 'СЛ', 'ТЧ', 'ВС', 'ВЕЛ', 'ЗС', 'СГ', 'ЯЛ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    for(var i=0;i<10;i++){
    $("#def\\[1\\]\\["+i+"\\]").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КПпБП-120 3х16', 'КПпБПТ-120 3х16', 'КЕСБПТ-230 3х16', 'КЭСБП-230 3х16', 'КИФБП-230 3х16', 'СТТ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#def\\[2\\]\\["+i+"\\]").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['К09','К13','К19','К28','К29','К56','К67','К90'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });

    }
    for(var i=0;i<9;i++){
    $("#repair\\[0\\]\\["+i+"\\]").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['нов', 'б/у'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#repair\\[3\\]\\["+i+"\\]").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КПпБП-120 3х16', 'КПпБПТ-120 3х16', 'КЕСБПТ-230 3х16', 'КЭСБП-230 3х16', 'КИФБП-230 3х16', 'СТТ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });
    $("#repair\\[4\\]\\["+i+"\\]").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['К09','К13','К19','К28','К29','К56','К67','К90'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });

    }
    })
    </script>
    </head>

    <body>
    <form action="document.php?act=save" method="post" enctype="application/x-www-form-urlencoded" target="_self">
    <input name="def_id" id="def_id" value="%def_id%" type="hidden">
    <input name="rep_id" id="rep_id" value="%rep_id%" type="hidden">
    <input name="id" id="id" value="%id%" type="hidden">
    <table border="0" cellspacing="0" cellpadding="0" width="98.8%" align="center">
    <tr>
    <td colspan="28" style="text-align:center;font-weight:bold;font-size:10pt;">Наряд-задание № %doc_num% на изготовление, ремонт и дефектацию кабельной линии</td>
    </tr>
    <tr>
    <td colspan="28">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="16" style="text-align:right;">ФИО</td>
    <td>&nbsp;</td>
    <td colspan="11" class="border_cell"><input name="cabler_s" id="cabler_s" value="%cabler_s%" type="text"></td>
    </tr>
    <tr>
    <td colspan="28" style="text-align:left;font-weight:bold;font-size:9pt;">Кабельная линия в ремонт:</td>
    </tr>
    <tr>
    <td colspan="2" align="right">Дата</td>
    <td colspan="3" class="border_cell"><input name="doc_date" id="doc_date" value="%doc_date%" type="text" /></td>
    <td colspan="2" align="right">Время</td>
    <td colspan="3" class="border_cell"><input name="doc_time" id="doc_time" value="%doc_time%" type="text" /></td>
    <td colspan="3" align="right">Протокол №</td>
    <td colspan="3" class="border_cell"><input name="protocol_s" id="protocol_s" value="%protocol_s%" type="text" /></td>
    <td colspan="3" align="right">Стеллаж</td>
    <td colspan="3" class="border_cell"><input name="stellage_s" id="stellage_s" value="%stellage_s%" type="text" /></td>
    <td colspan="3" align="right">Длина</td>
    <td colspan="3" class="border_cell"><input name="length_s" id="length_s" value="%length_s%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" align="right">НГДУ</td>
    <td colspan="3" class="border_cell"><input name="ngdu" id="ngdu" value="%ngdu%" type="text" /></td>
    <td colspan="2" align="right">Месторож</td>
    <td colspan="3" class="border_cell"><input name="place" id="place" value="%place%" type="text" /></td>
    <td colspan="3" align="right">Куст</td>
    <td colspan="3" class="border_cell"><input name="kust" id="kust" value="%kust%" type="text" /></td>
    <td colspan="3" align="right">Скважина</td>
    <td colspan="3" class="border_cell"><input name="hole" id="hole" value="%hole%" type="text" /></td>
    <td colspan="3" align="right">Наработка</td>
    <td colspan="3" class="border_cell"><input name="days" id="days" value="%days%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" align="right">Марка<br />
    кабеля</td>
    <td colspan="8" class="border_cell"><input name="type_s" id="type_s" value="%type_s%" type="text" /></td>
    <td colspan="3" align="right">нов,&nbsp;б/у</td>
    <td colspan="3" class="border_cell"><input name="new_not_s" id="new_not_s" value="%new_not_s%" type="text" />
    </td>
    <td colspan="3" align="right">Инвентарный&nbsp;№</td>
    <td colspan="9" class="border_cell"><input name="number_s" id="number_s" value="%number_s%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" align="right">Барабан&nbsp;№</td>
    <td colspan="3" class="border_cell"><input name="drum_s" id="drum_s" value="%drum_s%" type="text" /></td>
    <td colspan="2" align="right">Метки</td>
    <td colspan="3" class="border_cell"><input name="lables_s" id="lables_s" value="%lables_s%" type="text" /></td>
    <td colspan="3" align="right">Тип&nbsp;муфты&nbsp;№</td>
    <td colspan="15" class="border_cell">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><input name="muft_type_s" id="muft_type_s" value="%muft_type_s%" type="text" /></td>
    <td><input name="muft_num_s" id="muft_num_s" value="%muft_num_s%" type="text" /></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="28" style="text-align:left;">Сопротивление изоляции кабеля:</td>
    </tr>
    <tr>
    <td colspan="9" class="border_cell">Общее по жилам, МОм</td>
    <td colspan="9" class="border_cell">Кабельный удлинитель, МОм</td>
    <td colspan="9" class="border_cell">Основной кабель, МОм</td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="r_iso[0]" id="r_iso[0]" value="%r_iso[0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[1]" id="r_iso[1]" value="%r_iso[1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[2]" id="r_iso[2]" value="%r_iso[2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[3]" id="r_iso[3]" value="%r_iso[3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[4]" id="r_iso[4]" value="%r_iso[4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[5]" id="r_iso[5]" value="%r_iso[5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[6]" id="r_iso[6]" value="%r_iso[6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[7]" id="r_iso[7]" value="%r_iso[7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="r_iso[8]" id="r_iso[8]" value="%r_iso[8]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28" style="text-align:left;">Сопротивление изоляции кабельного удлинителя:</td>
    </tr>
    <tr>
    <td colspan="9" class="border_cell">Сростка, МОм</td>
    <td colspan="9" class="border_cell">Муфта, МОм</td>
    <td colspan="9" class="border_cell">Удлинитель, МОм</td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="udl_res[0]" id="udl_res[0]" value="%udl_res[0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[1]" id="udl_res[1]" value="%udl_res[1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[2]" id="udl_res[2]" value="%udl_res[2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[3]" id="udl_res[3]" value="%udl_res[3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[4]" id="udl_res[4]" value="%udl_res[4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[5]" id="udl_res[5]" value="%udl_res[5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[6]" id="udl_res[6]" value="%udl_res[6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[7]" id="udl_res[7]" value="%udl_res[7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="udl_res[8]" id="udl_res[8]" value="%udl_res[8]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28" style="font-size:2pt;">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="5" align="right">Длина&nbsp;по&nbsp;факту</td>
    <td colspan="4" class="border_cell"><input name="length_fact" id="length_fact" value="%length_fact%" type="text" /></td>
    <td colspan="6" align="right">Длина&nbsp;до&nbsp;сальника</td>
    <td colspan="4" class="border_cell"><input name="length_saln_s" id="length_saln_s" value="%length_saln_s%" type="text" /></td>
    <td colspan="5" align="right">Кол-во&nbsp;перекрутов</td>
    <td colspan="3" class="border_cell"><input name="perekrut_s" id="perekrut_s" value="%perekrut_s%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="5" align="right">Кол-во&nbsp;сросток</td>
    <td colspan="4" class="border_cell"><input name="splices_s" id="splices_s" value="%splices_s%" type="text" /></td>
    <td colspan="6" align="right">Кол-во&nbsp;бандажей</td>
    <td colspan="4" class="border_cell"><input name="bandage_s" id="bandage_s" value="%bandage_s%" type="text" /></td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td colspan="28" style="font-size:2pt;">&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="16" class="border_cell header left_bold right_bold top_bold">Отбраковка</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell header">Длина<br />
    отрезка</td>
    <td colspan="2" class="border_cell header">Тип кабеля</td>
    <td colspan="2" class="border_cell header">Завод</td>
    <td colspan="2" class="border_cell header">Шифр,<br />дата</td>
    <td colspan="2" class="border_cell header left_bold">Изм.<br />конфиг.<br />изол. слоя<br />(п.6, 7)*</td>
    <td colspan="2" class="border_cell header">Выделе-<br />ние геля<br />(п.2)*</td>
    <td colspan="2" class="border_cell header">Адгезия<br />(п.3, 8, 9)*</td>
    <td colspan="2" class="border_cell header">Снижен.<br />изоляции<br />(п.1)*</td>
    <td colspan="2" class="border_cell header">Механич<br />поврежд<br />(п.5)*</td>
    <td colspan="2" class="border_cell header">Коррозия<br />(п.5)*</td>
    <td colspan="2" class="border_cell header">Сальник</td>
    <td colspan="2" class="border_cell header right_bold">№ разб.<br />барабана</td>
    <td colspan="2" class="border_cell header">Длина<br />годного</td>
    <td colspan="2" class="border_cell header">Барабан<br />№</td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][0]" id="def[0][0]" value="%def[0][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][0]" id="def[1][0]" value="%def[1][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][0]" id="def[2][0]" value="%def[2][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][0]" id="def[3][0]" value="%def[3][0]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][0]" id="def[4][0]" value="%def[4][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][0]" id="def[12][0]" value="%def[12][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][0]" id="def[13][0]" value="%def[13][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][0]" id="def[5][0]" value="%def[5][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][0]" id="def[6][0]" value="%def[6][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][0]" id="def[7][0]" value="%def[7][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][0]" id="def[8][0]" value="%def[8][0]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][0]" id="def[9][0]" value="%def[9][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][0]" id="def[10][0]" value="%def[10][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][0]" id="def[11][0]" value="%def[11][0]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][1]" id="def[0][1]" value="%def[0][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][1]" id="def[1][1]" value="%def[1][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][1]" id="def[2][1]" value="%def[2][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][1]" id="def[3][1]" value="%def[3][1]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][1]" id="def[4][1]" value="%def[4][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][1]" id="def[12][1]" value="%def[12][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][1]" id="def[13][1]" value="%def[13][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][1]" id="def[5][1]" value="%def[5][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][1]" id="def[6][1]" value="%def[6][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][1]" id="def[7][1]" value="%def[7][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][1]" id="def[8][1]" value="%def[8][1]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][1]" id="def[9][1]" value="%def[9][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][1]" id="def[10][1]" value="%def[10][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][1]" id="def[11][1]" value="%def[11][1]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][2]" id="def[0][2]" value="%def[0][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][2]" id="def[1][2]" value="%def[1][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][2]" id="def[2][2]" value="%def[2][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][2]" id="def[3][2]" value="%def[3][2]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][2]" id="def[4][2]" value="%def[4][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][2]" id="def[12][2]" value="%def[12][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][2]" id="def[13][2]" value="%def[13][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][2]" id="def[5][2]" value="%def[5][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][2]" id="def[6][2]" value="%def[6][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][2]" id="def[7][2]" value="%def[7][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][2]" id="def[8][2]" value="%def[8][2]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][2]" id="def[9][2]" value="%def[9][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][2]" id="def[10][2]" value="%def[10][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][2]" id="def[11][2]" value="%def[11][2]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][3]" id="def[0][3]" value="%def[0][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][3]" id="def[1][3]" value="%def[1][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][3]" id="def[2][3]" value="%def[2][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][3]" id="def[3][3]" value="%def[3][3]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][3]" id="def[4][3]" value="%def[4][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][3]" id="def[12][3]" value="%def[12][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][3]" id="def[13][3]" value="%def[13][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][3]" id="def[5][3]" value="%def[5][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][3]" id="def[6][3]" value="%def[6][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][3]" id="def[7][3]" value="%def[7][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][3]" id="def[8][3]" value="%def[8][3]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][3]" id="def[9][3]" value="%def[9][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][3]" id="def[10][3]" value="%def[10][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][3]" id="def[11][3]" value="%def[11][3]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][4]" id="def[0][4]" value="%def[0][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][4]" id="def[1][4]" value="%def[1][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][4]" id="def[2][4]" value="%def[2][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][4]" id="def[3][4]" value="%def[3][4]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][4]" id="def[4][4]" value="%def[4][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][4]" id="def[12][4]" value="%def[12][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][4]" id="def[13][4]" value="%def[13][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][4]" id="def[5][4]" value="%def[5][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][4]" id="def[6][4]" value="%def[6][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][4]" id="def[7][4]" value="%def[7][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][4]" id="def[8][4]" value="%def[8][4]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][4]" id="def[9][4]" value="%def[9][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][4]" id="def[10][4]" value="%def[10][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][4]" id="def[11][4]" value="%def[11][4]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][5]" id="def[0][5]" value="%def[0][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][5]" id="def[1][5]" value="%def[1][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][5]" id="def[2][5]" value="%def[2][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][5]" id="def[3][5]" value="%def[3][5]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][5]" id="def[4][5]" value="%def[4][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][5]" id="def[12][5]" value="%def[12][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][5]" id="def[13][5]" value="%def[13][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][5]" id="def[5][5]" value="%def[5][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][5]" id="def[6][5]" value="%def[6][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][5]" id="def[7][5]" value="%def[7][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][5]" id="def[8][5]" value="%def[8][5]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][5]" id="def[9][5]" value="%def[9][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][5]" id="def[10][5]" value="%def[10][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][5]" id="def[11][5]" value="%def[11][5]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][6]" id="def[0][6]" value="%def[0][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][6]" id="def[1][6]" value="%def[1][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][6]" id="def[2][6]" value="%def[2][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][6]" id="def[3][6]" value="%def[3][6]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][6]" id="def[4][6]" value="%def[4][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][6]" id="def[12][6]" value="%def[12][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][6]" id="def[13][6]" value="%def[13][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][6]" id="def[5][6]" value="%def[5][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][6]" id="def[6][6]" value="%def[6][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][6]" id="def[7][6]" value="%def[7][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][6]" id="def[8][6]" value="%def[8][6]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][6]" id="def[9][6]" value="%def[9][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][6]" id="def[10][6]" value="%def[10][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][6]" id="def[11][6]" value="%def[11][6]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][7]" id="def[0][7]" value="%def[0][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][7]" id="def[1][7]" value="%def[1][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][7]" id="def[2][7]" value="%def[2][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][7]" id="def[3][7]" value="%def[3][7]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][7]" id="def[4][7]" value="%def[4][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][7]" id="def[12][7]" value="%def[12][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][7]" id="def[13][7]" value="%def[13][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][7]" id="def[5][7]" value="%def[5][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][7]" id="def[6][7]" value="%def[6][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][7]" id="def[7][7]" value="%def[7][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][7]" id="def[8][7]" value="%def[8][7]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][7]" id="def[9][7]" value="%def[9][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][7]" id="def[10][7]" value="%def[10][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][7]" id="def[11][7]" value="%def[11][7]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][8]" id="def[0][8]" value="%def[0][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][8]" id="def[1][8]" value="%def[1][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][8]" id="def[2][8]" value="%def[2][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][8]" id="def[3][8]" value="%def[3][8]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold"><input name="def[4][8]" id="def[4][8]" value="%def[4][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[12][8]" id="def[12][8]" value="%def[12][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[13][8]" id="def[13][8]" value="%def[13][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[5][8]" id="def[5][8]" value="%def[5][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[6][8]" id="def[6][8]" value="%def[6][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[7][8]" id="def[7][8]" value="%def[7][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[8][8]" id="def[8][8]" value="%def[8][8]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold"><input name="def[9][8]" id="def[9][8]" value="%def[9][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][8]" id="def[10][8]" value="%def[10][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][8]" id="def[11][8]" value="%def[11][8]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="2" class="border_cell"><input name="def[0][9]" id="def[0][9]" value="%def[0][9]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[1][9]" id="def[1][9]" value="%def[1][9]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[2][9]" id="def[2][9]" value="%def[2][9]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[3][9]" id="def[3][9]" value="%def[3][9]%" type="text" /></td>
    <td colspan="2" class="border_cell left_bold bottom_bold"><input name="def[4][9]" id="def[4][9]" value="%def[4][9]%" type="text" /></td>
    <td colspan="2" class="border_cell bottom_bold"><input name="def[12][9]" id="def[12][9]" value="%def[12][9]%" type="text" /></td>
    <td colspan="2" class="border_cell bottom_bold"><input name="def[13][9]" id="def[13][9]" value="%def[13][9]%" type="text" /></td>
    <td colspan="2" class="border_cell bottom_bold"><input name="def[5][9]" id="def[5][9]" value="%def[5][9]%" type="text" /></td>
    <td colspan="2" class="border_cell bottom_bold"><input name="def[6][9]" id="def[6][9]" value="%def[6][9]%" type="text" /></td>
    <td colspan="2" class="border_cell bottom_bold"><input name="def[7][9]" id="def[7][9]" value="%def[7][9]%" type="text" /></td>
    <td colspan="2" class="border_cell bottom_bold"><input name="def[8][9]" id="def[8][9]" value="%def[8][9]%" type="text" /></td>
    <td colspan="2" class="border_cell right_bold bottom_bold"><input name="def[9][9]" id="def[9][9]" value="%def[9][9]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[10][9]" id="def[10][9]" value="%def[10][9]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="def[11][9]" id="def[11][9]" value="%def[11][9]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28" style="font-size:2pt;">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="5" align="right">Общая длина доростки</td>
    <td colspan="3" class="border_cell"><input name="app_length" id="app_length" value="%app_length%" type="text" /></td>
    <td colspan="5" align="right">Барабан №</td>
    <td colspan="3" class="border_cell"><input name="app_drum" id="app_drum" value="%app_drum%" type="text" /></td>
    <td colspan="4" align="right">Кол-во сросток</td>
    <td colspan="2" class="border_cell"><input name="splices2" id="splices2" value="%splices2%" type="text" /></td>
    <td colspan="4" align="right">Кол-во бандажей</td>
    <td colspan="2" class="border_cell"><input name="bandages2" id="bandages2" value="%bandages2%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28"><hr /></td>
    </tr>
    <tr>
    <td colspan="28" style="text-align:left;font-weight:bold;font-size:9pt;">Кабельная линия (доростка) после ремонта, отрезки указывать с конца КЛ.</td>
    </tr>
    <tr>
    <td colspan="3" rowspan="2" class="border_cell header">Тип доростки Нов,БУ</td>
    <td colspan="3" rowspan="2" class="border_cell header">Барабан №</td>
    <td colspan="3" rowspan="2" class="border_cell header">Длина отрезка</td>
    <td colspan="4" rowspan="2" class="border_cell header">Марка кабеля</td>
    <td colspan="3" rowspan="2" class="border_cell header">Завод</td>
    <td colspan="3" rowspan="2" class="border_cell header">Шифр дата</td>
    <td colspan="9" class="border_cell header">Результат испытания</td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell header">годен/<br />
    негоден</td>
    <td colspan="2" class="border_cell header">№ п. по журналу</td>
    <td colspan="4" class="border_cell header">Ф.И.О. испытателя</td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][0]" id="repair[0][0]" value="%repair[0][0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][0]" id="repair[1][0]" value="%repair[1][0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][0]" id="repair[2][0]" value="%repair[2][0]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][0]" id="repair[3][0]" value="%repair[3][0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][0]" id="repair[4][0]" value="%repair[4][0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][0]" id="repair[5][0]" value="%repair[5][0]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][0]" id="repair[6][0]" value="%repair[6][0]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][0]" id="repair[7][0]" value="%repair[7][0]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][0]" id="repair[8][0]" value="%repair[8][0]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][1]" id="repair[0][1]" value="%repair[0][1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][1]" id="repair[1][1]" value="%repair[1][1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][1]" id="repair[2][1]" value="%repair[2][1]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][1]" id="repair[3][1]" value="%repair[3][1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][1]" id="repair[4][1]" value="%repair[4][1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][1]" id="repair[5][1]" value="%repair[5][1]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][1]" id="repair[6][1]" value="%repair[6][1]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][1]" id="repair[7][1]" value="%repair[7][1]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][1]" id="repair[8][1]" value="%repair[8][1]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][2]" id="repair[0][2]" value="%repair[0][2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][2]" id="repair[1][2]" value="%repair[1][2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][2]" id="repair[2][2]" value="%repair[2][2]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][2]" id="repair[3][2]" value="%repair[3][2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][2]" id="repair[4][2]" value="%repair[4][2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][2]" id="repair[5][2]" value="%repair[5][2]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][2]" id="repair[6][2]" value="%repair[6][2]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][2]" id="repair[7][2]" value="%repair[7][2]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][2]" id="repair[8][2]" value="%repair[8][2]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][3]" id="repair[0][3]" value="%repair[0][3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][3]" id="repair[1][3]" value="%repair[1][3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][3]" id="repair[2][3]" value="%repair[2][3]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][3]" id="repair[3][3]" value="%repair[3][3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][3]" id="repair[4][3]" value="%repair[4][3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][3]" id="repair[5][3]" value="%repair[5][3]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][3]" id="repair[6][3]" value="%repair[6][3]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][3]" id="repair[7][3]" value="%repair[7][3]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][3]" id="repair[8][3]" value="%repair[8][3]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][4]" id="repair[0][4]" value="%repair[0][4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][4]" id="repair[1][4]" value="%repair[1][4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][4]" id="repair[2][4]" value="%repair[2][4]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][4]" id="repair[3][4]" value="%repair[3][4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][4]" id="repair[4][4]" value="%repair[4][4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][4]" id="repair[5][4]" value="%repair[5][4]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][4]" id="repair[6][4]" value="%repair[6][4]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][4]" id="repair[7][4]" value="%repair[7][4]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][4]" id="repair[8][4]" value="%repair[8][4]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][5]" id="repair[0][5]" value="%repair[0][5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][5]" id="repair[1][5]" value="%repair[1][5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][5]" id="repair[2][5]" value="%repair[2][5]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][5]" id="repair[3][5]" value="%repair[3][5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][5]" id="repair[4][5]" value="%repair[4][5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][5]" id="repair[5][5]" value="%repair[5][5]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][5]" id="repair[6][5]" value="%repair[6][5]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][5]" id="repair[7][5]" value="%repair[7][5]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][5]" id="repair[8][5]" value="%repair[8][5]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][6]" id="repair[0][6]" value="%repair[0][6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][6]" id="repair[1][6]" value="%repair[1][6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][6]" id="repair[2][6]" value="%repair[2][6]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][6]" id="repair[3][6]" value="%repair[3][6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][6]" id="repair[4][6]" value="%repair[4][6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][6]" id="repair[5][6]" value="%repair[5][6]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][6]" id="repair[6][6]" value="%repair[6][6]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][6]" id="repair[7][6]" value="%repair[7][6]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][6]" id="repair[8][6]" value="%repair[8][6]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][7]" id="repair[0][7]" value="%repair[0][7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][7]" id="repair[1][7]" value="%repair[1][7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][7]" id="repair[2][7]" value="%repair[2][7]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][7]" id="repair[3][7]" value="%repair[3][7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][7]" id="repair[4][7]" value="%repair[4][7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][7]" id="repair[5][7]" value="%repair[5][7]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][7]" id="repair[6][7]" value="%repair[6][7]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][7]" id="repair[7][7]" value="%repair[7][7]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][7]" id="repair[8][7]" value="%repair[8][7]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="repair[0][8]" id="repair[0][8]" value="%repair[0][8]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[1][8]" id="repair[1][8]" value="%repair[1][8]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[2][8]" id="repair[2][8]" value="%repair[2][8]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[3][8]" id="repair[3][8]" value="%repair[3][8]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[4][8]" id="repair[4][8]" value="%repair[4][8]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[5][8]" id="repair[5][8]" value="%repair[5][8]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="repair[6][8]" id="repair[6][8]" value="%repair[6][8]%" type="text" /></td>
    <td colspan="2" class="border_cell"><input name="repair[7][8]" id="repair[7][8]" value="%repair[7][8]%" type="text" /></td>
    <td colspan="4" class="border_cell"><input name="repair[8][8]" id="repair[8][8]" value="%repair[8][8]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28" style="font-size:2pt;">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="3" rowspan="2" align="right">Остаток кабеля</td>
    <td colspan="3" class="border_cell">Длина</td>
    <td colspan="3" class="border_cell">Барабан №</td>
    <td colspan="3" class="border_cell">Длина</td>
    <td colspan="3" class="border_cell">Барабан №</td>
    <td colspan="3" class="border_cell">Длина</td>
    <td colspan="3" class="border_cell">Барабан №</td>
    <td colspan="3" class="border_cell">Длина</td>
    <td colspan="3" class="border_cell">Барабан №</td>
    </tr>
    <tr>
    <td colspan="3" class="border_cell"><input name="ost[0][len]" id="ost[0][len]" value="%ost[0][len]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[0][drum]" id="ost[0][drum]" value="%ost[0][drum]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[1][len]" id="ost[1][len]" value="%ost[1][len]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[1][drum]" id="ost[1][drum]" value="%ost[1][drum]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[2][len]" id="ost[2][len]" value="%ost[2][len]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[2][drum]" id="ost[2][drum]" value="%ost[2][drum]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[3][len]" id="ost[3][len]" value="%ost[3][len]%" type="text" /></td>
    <td colspan="3" class="border_cell"><input name="ost[3][drum]" id="ost[3][drum]" value="%ost[3][drum]%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28" style="font-size:2pt;">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="6" align="right">Длина кабельной линии</td>
    <td colspan="4" class="border_cell"><input name="length" id="length" value="%length%" type="text" /></td>
    <td colspan="6" align="right">Барабан №</td>
    <td colspan="4" class="border_cell"><input name="drum" id="drum" value="%drum%" type="text" /></td>
    <td colspan="4" align="right">Инвентарный №</td>
    <td colspan="4" class="border_cell"><input name="number" id="number" value="%number%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="6" align="right">Количество сросток</td>
    <td colspan="4" class="border_cell"><input name="splices" id="splices" value="%splices%" type="text" /></td>
    <td colspan="6" align="right">Кол.бандаж</td>
    <td colspan="4" class="border_cell"><input name="bandage" id="bandage" value="%bandage%" type="text" /></td>
    <td colspan="4" align="right">Марка кабеля</td>
    <td colspan="4" class="border_cell"><input name="c_type" id="c_type" value="%c_type%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="6" align="right">Наличие меток</td>
    <td colspan="4" class="border_cell"><input name="label" id="label" value="%label%" type="text" /></td>
    <td colspan="6" align="right">Нов. или б/у</td>
    <td colspan="4" class="border_cell"><input name="new_not" id="new_not" value="%new_not%" type="text" /></td>
    <td colspan="4" align="right">Тип муфты №</td>
    <td colspan="4" class="border_cell">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><input name="muft_type" id="muft_type" value="%muft_type%" type="text" /></td>
    </tr>
    <tr>
    <td><input name="muft_num" id="muft_num" value="%muft_num%" type="text" /></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="6" align="right">Дата выдачи кабеля</td>
    <td colspan="4" class="border_cell"><input name="fin_date" id="fin_date" value="%fin_date%" type="text" /></td>
    <td colspan="6" align="right">Время выдачи кабеля</td>
    <td colspan="4" class="border_cell"><input name="fin_time" id="fin_time" value="%fin_time%" type="text" /></td>
    <td colspan="4" align="right">№ протокола</td>
    <td colspan="4" class="border_cell"><input name="protocol" id="protocol" value="%protocol%" type="text" /></td>
    </tr>
    <tr>
    <td colspan="28" style="font-size:2pt;">&nbsp;</td>
    </tr>
    <tr>
    <td colspan="5" align="right">Ф.И.О мастер выдал</td>
    <td colspan="6" style="border-bottom:1px solid #000;">
    <input name="master" id="master" value="%master%" type="text" />
    </td>
    <td colspan="2" style="border-bottom:1px solid #000;">&nbsp;</td>
    <td colspan="5" align="right">Ф.И.О кабель сдал</td>
    <td colspan="6" style="border-bottom:1px solid #000;">
    <input name="cabler2" id="cabler2" value="%cabler2%" type="text" />
    </td>
    <td colspan="2" style="border-bottom:1px solid #000;">&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="2" align="center" style="font-size:6pt;">(подпись)</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="2" align="center" style="font-size:6pt;">(подпись)</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td colspan="5" align="right">Ф.И.О кабельщик принял</td>
    <td colspan="6" style="border-bottom:1px solid #000;">
    <input name="cabler" id="cabler" value="%cabler%" type="text" />
    </td>
    <td colspan="2" style="border-bottom:1px solid #000;">&nbsp;</td>
    <td colspan="5" align="right">Ф.И.О контролер СТК</td>
    <td colspan="6" style="border-bottom:1px solid #000;">
    <input name="controler" id="controler" value="%controler%" type="text" />
    </td>
    <td colspan="2" style="border-bottom:1px solid #000;">&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="2" align="center" style="font-size:6pt;">(подпись)</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="2" align="center" style="font-size:6pt;">(подпись)</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="5" align="right">Ф.И.О мастер принял</td>
    <td colspan="6" style="border-bottom:1px solid #000;">
    <input name="master2" id="master2" value="%master2%" type="text" />
    </td>
    <td colspan="2" style="border-bottom:1px solid #000;">&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="2" align="center" style="font-size:6pt;">(подпись)</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td colspan="8" class="buttons">
    <button id="submit_btn">Сохранить</button>
    <button id="print_btn">Печать</button>
    <button id="cancel_btn">Закрыть</button>
    </td>
    <td>&nbsp;</td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    ...
  • Sinkler

    Сообщения: 7958 Репутация: N Группа: в ухо

    Spritz 10 июня 2014 г. 13:49, спустя 1 минуту 8 секунд

    вам, наверное, нужен раздел "предлагаю работу"

  • morley100

    Сообщения: 5 Репутация: N Группа: Кто попало

    Spritz 10 июня 2014 г. 13:53, спустя 4 минуты 14 секунд

    Кто сможет помочь пишите на мой скайп mor3381. Там 8 заданий я всё подробно опишу что и как скину весь готовый проект, так будет легче ориентироваться т.к я не знаю какие коды файлов необходимо скидывать чтобы было понятнее. Там всё связано с друг другом и с базой данных.

    Спустя 80 сек.

    Sinkler вы правы, я и не прошу за просто так мне помочь. т.к вряд ли кто то будет это делать и вникать за просто так.
    ...
  • Trej Gun

    Сообщения: 5305 Репутация: N Группа: в ухо

    Spritz 10 июня 2014 г. 13:56, спустя 2 минуты 48 секунд

    у тебя есть список
    ['КР', 'ВЧ', 'БС', 'ЗСЛ', 'СЮР', 'СЛ', 'ТЧ', 'ВС', 'ВЕЛ', 'ЗС', 'СГ', 'ЯЛ']

    значит в базу лазиить не надо
    jquery ui тоже уже подключен
    значит надо только открыть мануал
    http://jqueryui.com/autocomplete/#default
    и сделать по примеру
  • morley100

    Сообщения: 5 Репутация: N Группа: Кто попало

    Spritz 10 июня 2014 г. 14:08, спустя 11 минут 44 секунды

    Автозаполнени то работает но когда только начинаешь в поле набирать К или первую букву из этого списка. Но мне поставлена задача сделать не автозаполнение а просто раскрывающийся список без автозаполнения. Т.е кликаю по ячейке с параметром и выскакивает вертикальный список ( КР', 'ВЧ', 'БС', 'ЗСЛ', 'СЮР', 'СЛ', 'ТЧ', 'ВС', 'ВЕЛ', 'ЗС', 'СГ', 'ЯЛ')…… Вот ну а про автозаполнение я для интереса попробовал сделать для какой либо ячейки это заполнение и ничего не работает в примеру ячейка называется #type_s

    Вот для неё я так понимаю код для автозаполнения:



    $("#type_s").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КПпБП-120 3х16', 'КПпБПТ-120 3х16', 'КЕСБПТ-230 3х16', 'КЭСБП-230 3х16', 'КИФБП-230 3х16', 'СТТ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });



    И ели я к примеру делаю для другой ячейки это автозаполнение оно не работает. копировал с этого кода вставлял ниже только менял параметр #type_s на др. и НИЧЕГО…. но суть не в этом , мне же надо раскрывающийся список и не автозаполнение… такое реально сделать ребят?

    Спустя 28 сек.

    Автозаполнени то работает но когда только начинаешь в поле набирать К или первую букву из этого списка. Но мне поставлена задача сделать не автозаполнение а просто раскрывающийся список без автозаполнения. Т.е кликаю по ячейке с параметром и выскакивает вертикальный список ( КР', 'ВЧ', 'БС', 'ЗСЛ', 'СЮР', 'СЛ', 'ТЧ', 'ВС', 'ВЕЛ', 'ЗС', 'СГ', 'ЯЛ')…… Вот ну а про автозаполнение я для интереса попробовал сделать для какой либо ячейки это заполнение и ничего не работает в примеру ячейка называется #type_s

    Вот для неё я так понимаю код для автозаполнения:



    $("#type_s").autocomplete({
    source: function( request, response ) {
    var matcher = new RegExp( $.ui.autocomplete.escapeRegex( request.term ), "i" );
    response( $.grep( ['КПпБП-120 3х16', 'КПпБПТ-120 3х16', 'КЕСБПТ-230 3х16', 'КЭСБП-230 3х16', 'КИФБП-230 3х16', 'СТТ'], function( value ) {
    value = value.label || value.value || value;
    return matcher.test( value ) || matcher.test( value );
    }) );
    }
    });



    И ели я к примеру делаю для другой ячейки это автозаполнение оно не работает. копировал с этого кода вставлял ниже только менял параметр #type_s на др. и НИЧЕГО…. но суть не в этом , мне же надо раскрывающийся список и не автозаполнение… такое реально сделать ребят?

    Спустя 245 сек.

    Может это подойдёт для меня? http://jqueryui.com/autocomplete/#combobox
    ...
  • phpdude

    Сообщения: 26646 Репутация: N Группа: в ухо

    Spritz 10 июня 2014 г. 14:20, спустя 11 минут 43 секунды

    ух :)

    если вы не в курсе что происходит то проще всего за денежку сделать у кого то - нервы сэкономите себе и людям :)

    Сапожник без сапог
  • morley100

    Сообщения: 5 Репутация: N Группа: Кто попало

    Spritz 10 июня 2014 г. 14:23, спустя 3 минуты 11 секунд

    а у кого? дайте контакты просто делать уже надо сейчас и для крупной организции…

    Спустя 3 сек.

    а у кого? дайте контакты просто делать уже надо сейчас и для крупной организции…
    ...
  • kostyl

    Сообщения: 5210 Репутация: N Группа: Джедаи

    Spritz 10 июня 2014 г. 19:41, спустя 5 часов 18 минут 29 секунд

    да нынче и контакты стоят дорого )))
    эта просто не та работа, за которую берутся люди, которые могут всё хорошо сделать, хотя я могу ошибаться…

    Спустя 11 сек.

    да нынче и контакты стоят дорого )))
    эта просто не та работа, за которую берутся люди, которые могут всё хорошо сделать, хотя я могу ошибаться…

    Спустя 31 сек.

    ага вот оно чё повторяется - пятисотая ошибка когда первый раз отправил
  • phpdude

    Сообщения: 26646 Репутация: N Группа: в ухо

    Spritz 10 июня 2014 г. 19:53, спустя 11 минут 21 секунду

    стопудово синклер накосячил

    Сапожник без сапог
  • Sinkler

    Сообщения: 7958 Репутация: N Группа: в ухо

    Spritz 10 июня 2014 г. 22:10, спустя 2 часа 17 минут 4 секунды

    нет, эдво, когда пытался переместить)

  • Sinkler

    Сообщения: 7958 Репутация: N Группа: в ухо

    Spritz 10 июня 2014 г. 23:53, спустя 1 час 42 минуты 58 секунд

    короче, у нас записана проблема, не обращайте внимания

  • Ivan.

    Сообщения: 495 Репутация: N Группа: Адекваты

    Spritz 11 июня 2014 г. 1:27, спустя 1 час 33 минуты 50 секунд

    сделаю за 1000 рублей, интересует?

    Спустя 89 сек.

    только код отправьте либо вложением, либо через https://codeo.me, а то не читабельно
  • morley100

    Сообщения: 5 Репутация: N Группа: Кто попало

    Spritz 11 июня 2014 г. 14:53, спустя 13 часов 26 минут 40 секунд

    Да очень интересует Иван.
    ...
  • phpdude

    Сообщения: 26646 Репутация: N Группа: в ухо

    Spritz 11 июня 2014 г. 15:15, спустя 21 минуту 53 секунды

    Да очень интересует Иван.

    @morley100, ване на опохмел самое то будет)

    Сапожник без сапог
  • Ivan.

    Сообщения: 495 Репутация: N Группа: Адекваты

    Spritz 11 июня 2014 г. 18:40, спустя 3 часа 25 минут 4 секунды

    Как с вами связаться? Отправьте мне инфу на почту [email protected]
    Возьму предоплату, так как вас не знаю, по понятным причинам

Пожалуйста, авторизуйтесь, чтобы написать комментарий!