This topic is locked

open in new window with exact fit

5/17/2009 2:25:27 PM
PHPRunner General questions
F
fantasmino1 author

Hi all

Someone please can help me do :

from view button in list page opening the link in another window"popup" with exact fit

I have try

$record["viewlink_attrs"]="target=_blank scale=exactfit href=\"mytable_view.php?"
open in another windows but not exactfit

J
Jane 5/18/2009

Hi,
I recommend you to use JavaScript code to open new window with selected width and height. Edit generated ..._list.php file for this purpose.

http://www.w3schools.com/HTMLDOM/met_win_open.asp

F
fantasmino1 author 5/18/2009

I will try tnx jane

F
fantasmino1 author 5/18/2009

Hi again Jane

<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=41197&image=1&table=forumreplies' class='bbc_emoticon' alt=':(' /> I wasn't able to do it can you be so kind with more detail please

I have try searching also in forum

J
Jane 5/19/2009

Hi,
here is just a sample:

$editlink="editid1=".htmlspecialchars(rawurlencode($data["FieldName"]));

$record["viewlink_attrs"]="href=# onclick=\"window.open('tablename_view.php?".$editlink."','','width=200,height=100');\"";

F
fantasmino1 author 5/19/2009

Tnx a lot

works