Subversion-Projekte lars-tiefland.webanos.marine-sales.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
    $(function(){
2
        $('.lager').click(lagerbestand).css("cursor","pointer");
3
 
4
        $('#lagerbestand').dialog(
5
        {
6
            autoOpen:false,
7
            resizable:false,
8
            modal:true,
9
            width:900,
10
            height:"auto",
11
            buttons:[{
12
                id:"schliessen",
13
                text:'schließen',
14
                click: function(){
15
                    $(this).dialog("close");
16
                }
17
            }]
18
        });
19
 
20
    });
21
 
22
    function lagerbestand(e)
23
    {
24
        e.preventDefault();
25
        let item_id_arr=this.id.split("_");
26
        let item_id=item_id_arr[1];
27
        $('#lagerbestand').load("/Warenwirtschaft/lagerbestand.php",{
28
            item:item_id
29
        }).dialog("open");
30
        $('#schliessen').focus();
31
        return false;
32
    }