Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#pos_article_content div.articles
|
||||
{
|
||||
width:250px;
|
||||
height:250px;
|
||||
float:left;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
$(document).ready(function(){
|
||||
$('#pos_article_popup').dialog(
|
||||
{
|
||||
modal: true,
|
||||
autoOpen: false,
|
||||
minWidth: 940,
|
||||
title:'Artikel',
|
||||
buttons: {
|
||||
ABBRECHEN: function() {
|
||||
$(this).dialog('close');
|
||||
}
|
||||
},
|
||||
close: function(event, ui){
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
$('#posarticlespopup').on('click',function(){
|
||||
$('#pos_article_popup').dialog('open');
|
||||
});
|
||||
|
||||
$('#pos_article_content div.articles').on('click',function(){
|
||||
$('#pos_article_popup').dialog('close');
|
||||
$('#artikelnummerprojekt').val($(this).data('nummer'));
|
||||
$('#loadart').submit();
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user