kVp and mAs table?

26 views
Skip to first unread message

Algie Rosario

unread,
Jul 8, 2014, 6:29:30 AM7/8/14
to dcm...@googlegroups.com
Hi,

I have an existing code that inserts tags for (0018,0060),

 var dcmM="";
    if ($("#kvp").val()!=""){
        dcmM="-i \""+$("#kvp").attr("tag")+"="+$("#kvp").val()+"\"";
    }
    if ($("#mAs").val()!=""){
        dcmM+=(dcmM=="")?"":" ";
        dcmM+="-i \""+$("#mAs").attr("tag")+"="+$("#mAs").val()+"\"";
    }
//alert($("#tagSeriesPK").val());
alert(dcmM);
    $.post("core/pacsinfo.jsp",{mode:41,tags:dcmM,spk:$("#tagSeriesPK").val()},function(data){
        //data=$.trim(data);
        //alert(data);
    });


in my case41:

 case 41:
            q = request.getParameter("spk");
            html = getSeriesFilebyPK(q);
            System.out.println(html);
            filex = html.split(",");
            for (String fx : filex) {
                pr = run.exec("c:/dcmsyst/tools/dcmodify.exe " + request.getParameter("tags") + " " + fx);
                pr.waitFor();
            }
out.println(html);
            break;

My question is what table it saves to?

Thanks,
Algie Rosario
Reply all
Reply to author
Forward
0 new messages