Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Well I am developing a lookup using window.open object for the web apps which runs on the webkit browser of android tablet.Now the problem is the object is not displaying to its given height & width on the tablet while it is displaying good on the windows desktop.Following is my code.

JavaScript
function ADShowLookup(Title,For,Obj,ObjDesc,Text,WeDate, Focus,FunName,Height,Width,UserGroup)
    {
        URL = "Height="+Height+"&hObject=" + Obj + "&hObjDesc=" + ObjDesc + "&hFor=" + For + "&Text=" + Text;
        if(Focus != undefined)   URL += "&nextfocus=" + Focus ;
        if(FunName != undefined)   URL += "&hFunName="  + FunName ;        
        if(UserGroup != undefined)   URL += "&hUserGroup="  + UserGroup ; 
        if(WeDate != undefined)   URL += "&WeDate=`dtWeDate`" ;
        doOpenWin('calltc2?title=' + Title + '&report=showLookup¶ms=' + escape(URL),Height,Width);
    }

    function doOpenWin(URL, Height, Width)
    {
        Att = "dialogWidth:" + Width + "px; dialogHeight:" + Height + "px; status:no; center:yes;scroll:no";
        //showModalDialog(URL,window,Att);
        var hwin;
        hwin = window.open(URL,'win1','toolbar=no,statusbar=yes,width=400,height=600');
        hwin.moveTo(300, 400);
    }


HTML
<img src="/michel/lookup.gif"  önclick=" ADShowLookup('CC Search','cc16','CcCode','CcDesc','`cJobNo`','County','',600,300)" style="cursor:pointer">


So can anyone help me in this?

Your help will surely appreciated.

Thanks in Advance!!!!!

Regards,

Arvind
Posted
Updated 19-Aug-11 3:08am
v2

1 solution

Where did you get your dialogWidth, dialogHeight? Must be width, height. Find correct samples here: http://www.javascript-coder.com/window-popup/javascript-window-open.phtml[^].

There are million of documents describing such Javascript function, why not looking at them? As you asked this question, you have Internet access.

—SA
 
Share this answer
 
Comments
123arvind123 22-Aug-11 1:42am    
well thanks SAKrykove for reply...I am doing this task on the android tablet.I know what is window.open it properties and parameters.On the desktop its working good but not working on the android tab.It just pop up on the whole screen which is my problem.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900