Task : esthetic Follow up , tags

This commit is contained in:
Dany De Bontridder 2018-02-27 21:27:33 +01:00
parent 8866901d25
commit 5da49b75bc
2 changed files with 7 additions and 3 deletions

View file

@ -2610,12 +2610,12 @@ function search_display_tag(p_dossier, p_prefix)
var code_html = getNodeText(html[0]);
code_html = unescape_xml(code_html);
remove_waiting_box();
add_div({id: p_prefix + 'tag_div', style: '', cssclass: 'inner_box', drag: 1});
add_div({id: p_prefix + 'tag_div', style: 'left:10%;width:70%', cssclass: 'inner_box', drag: 1});
$(p_prefix + 'tag_div').style.top = posY - 80 + "px";
$(p_prefix + 'tag_div').style.left = posX - 200 + "px";
remove_waiting_box();
$(p_prefix + 'tag_div').innerHTML = code_html;
code_html.evalScripts();
}
}
);

View file

@ -50,4 +50,8 @@ $gDossier=Dossier::id();
<?php
endfor;
?>
</table>
</table>
<script>
show_only_row('<?=$p_prefix?>tag_tb_id','tag_status','Y');
</script>
<?=HtmlInput::button_close($p_prefix.'tag_div')?>