CodeCharge Studio
search Register Login  

Visual Web Reporting

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeCharge.Discussion

 New Popup Window

Print topic Send  topic

Author Message
H.F. Dekker
Posted: 03/26/2003, 2:14 PM

I work with CodeCharge.
Does anybody knows how to make a NEW (popup) window.
Example : see portal and when make choise of Administration or Event THEN a
New Window will start (With Close Button)

Thanks

--
Dirk Dekker

PvD
Posted: 04/09/2003, 6:34 AM

Hi Dirk,

try this:

<a href="javascript:void(0);" onClick="window.open('newwin.html', 'newwin',
'width=400, height=600, resizable=1, scrollbars=1')">linkname</a>

or:

<SCRIPT LANGUAGE="Java Script">
<!--//
function openit(sURL){
newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
directories=no, menu bar=no, resizable=yes,
status=yes, width=600, height=500");
}
//-->
</SCRIPT>

<A HREF="javascript:openit ('newwin.html')">
open window with no toolbars</A>

or extra in the A HREF tag to hide the link:
<A HREF="javascript:void(0);" onClick="javascript:openit
('clicktext.html')">
open window with no toolbars</A>

good luck,

Peter

"H.F. Dekker" <h.dekker@ps.nl> wrote in message
news:b5t8nn$19g$1@news.codecharge.com...
> I work with CodeCharge.
> Does anybody knows how to make a NEW (popup) window.
> Example : see portal and when make choise of Administration or Event THEN
a
> New Window will start (With Close Button)
>
> Thanks
>
> --
> Dirk Dekker
>
>

H.F. Dekker
Posted: 04/09/2003, 1:49 PM

Hi Peter ,
thanks for reaction my question
I understand what you mean, but the question now is "WHERE" will I write the
statements.
In the PageHeader or FormProperties Header&Footer. I don't know.
CodeCharge is nice to use but more functionalities like you suppose is hard
done.

Lets take an example...
As we take the example EmplDir.ccs and activate it in CodeCharge then I like
to open a New Window when starting:
http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
Thus Logging in / Members/ Edit (bob Kuch)
Maybe you have the answer for me !!
Thanks again.

Dirk Dekker




"PvD" <webmaster@lpp-nh.nl> schreef in bericht
news:b717g8$o2r$1@news.codecharge.com...
> Hi Dirk,
>
> try this:
>
> <a href="javascript:void(0);" onClick="window.open('newwin.html',
'newwin',
> 'width=400, height=600, resizable=1, scrollbars=1')">linkname</a>
>
> or:
>
> <SCRIPT LANGUAGE="Java Script">
> <!--//
> function openit(sURL){
> newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
> directories=no, menu bar=no, resizable=yes,
> status=yes, width=600, height=500");
> }
> //-->
> </SCRIPT>
>
> <A HREF="javascript:openit ('newwin.html')">
> open window with no toolbars</A>
>
> or extra in the A HREF tag to hide the link:
> <A HREF="javascript:void(0);" onClick="javascript:openit
> ('clicktext.html')">
> open window with no toolbars</A>
>
> good luck,
>
> Peter
>
> "H.F. Dekker" <h.dekker@ps.nl> wrote in message
>news:b5t8nn$19g$1@news.codecharge.com...
> > I work with CodeCharge.
> > Does anybody knows how to make a NEW (popup) window.
> > Example : see portal and when make choise of Administration or Event
THEN
> a
> > New Window will start (With Close Button)
> >
> > Thanks
> >
> > --
> > Dirk Dekker
> >
> >
>
>

PvD
Posted: 04/10/2003, 12:28 AM

Hi Dirk,

when you swith to HTML, you can write the code straight into the href tag.
If you want to go to another page, you always do so via a link. This link is
defined as <a href="PAGENAME.html">LINK DESCRIPTION</a>.
The path to this link can be relative or absolute.
In your example it could be something like <a href=javascript:void(0);"
onClick="window.open('http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmo
nth=&name=&', 'newwin', 'width=400, height=600, resizable=1,
scrollbars=1')">LINK DESCRIPTION</a>

To close this window, you make a link as following:
<a href="JavaScript:window.close()">Close Window</a>

Let me know if this works.

Peter

"H.F. Dekker" <h.dekker@ps.nl> wrote in message
news:b72107$g7q$1@news.codecharge.com...
> Hi Peter ,
> thanks for reaction my question
> I understand what you mean, but the question now is "WHERE" will I write
the
> statements.
> In the PageHeader or FormProperties Header&Footer. I don't know.
> CodeCharge is nice to use but more functionalities like you suppose is
hard
> done.
>
> Lets take an example...
> As we take the example EmplDir.ccs and activate it in CodeCharge then I
like
> to open a New Window when starting:
> http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
> Thus Logging in / Members/ Edit (bob Kuch)
> Maybe you have the answer for me !!
> Thanks again.
>
> Dirk Dekker
>
>
>
>
> "PvD" <webmaster@lpp-nh.nl> schreef in bericht
>news:b717g8$o2r$1@news.codecharge.com...
> > Hi Dirk,
> >
> > try this:
> >
> > <a href="javascript:void(0);" onClick="window.open('newwin.html',
> 'newwin',
> > 'width=400, height=600, resizable=1, scrollbars=1')">linkname</a>
> >
> > or:
> >
> > <SCRIPT LANGUAGE="Java Script">
> > <!--//
> > function openit(sURL){
> > newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
> > directories=no, menu bar=no, resizable=yes,
> > status=yes, width=600, height=500");
> > }
> > //-->
> > </SCRIPT>
> >
> > <A HREF="javascript:openit ('newwin.html')">
> > open window with no toolbars</A>
> >
> > or extra in the A HREF tag to hide the link:
> > <A HREF="javascript:void(0);" onClick="javascript:openit
> > ('clicktext.html')">
> > open window with no toolbars</A>
> >
> > good luck,
> >
> > Peter
> >
> > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> >news:b5t8nn$19g$1@news.codecharge.com...
> > > I work with CodeCharge.
> > > Does anybody knows how to make a NEW (popup) window.
> > > Example : see portal and when make choise of Administration or Event
> THEN
> > a
> > > New Window will start (With Close Button)
> > >
> > > Thanks
> > >
> > > --
> > > Dirk Dekker
> > >
> > >
> >
> >
>
>

H.F. Dekker
Posted: 04/10/2003, 5:23 AM

Hi Peter,
When something has been changed in CodeCharge by way of HTML-Edittor
(Dreamweaver) then the next time something is saved in the ".ccs" in
codecharge the question "Something has changed outside of codecharge" is
prompted.
Off course you say "NO" because else you have to make the changes again.(..)
The best way of inclusing statements like formulas in CodeCharge is to embed
it in a FormPage Header&Footer or directly in de PageHeader.
Will this work with your code also??
Did you use that on the same way?
Thanks!
--
Dirk Dekker


"PvD" <webmaster@lpp-nh.nl> schreef in bericht
news:b736f5$d2$1@news.codecharge.com...
> Hi Dirk,
>
> when you swith to HTML, you can write the code straight into the href tag.
> If you want to go to another page, you always do so via a link. This link
is
> defined as <a href="PAGENAME.html">LINK DESCRIPTION</a>.
> The path to this link can be relative or absolute.
> In your example it could be something like <a href=javascript:void(0);"
>
onClick="window.open('http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmo
> nth=&name=&', 'newwin', 'width=400, height=600, resizable=1,
> scrollbars=1')">LINK DESCRIPTION</a>
>
> To close this window, you make a link as following:
> <a href="JavaScript:window.close()">Close Window</a>
>
> Let me know if this works.
>
> Peter
>
> "H.F. Dekker" <h.dekker@ps.nl> wrote in message
>news:b72107$g7q$1@news.codecharge.com...
> > Hi Peter ,
> > thanks for reaction my question
> > I understand what you mean, but the question now is "WHERE" will I write
> the
> > statements.
> > In the PageHeader or FormProperties Header&Footer. I don't know.
> > CodeCharge is nice to use but more functionalities like you suppose is
> hard
> > done.
> >
> > Lets take an example...
> > As we take the example EmplDir.ccs and activate it in CodeCharge then I
> like
> > to open a New Window when starting:
> > http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
> > Thus Logging in / Members/ Edit (bob Kuch)
> > Maybe you have the answer for me !!
> > Thanks again.
> >
> > Dirk Dekker
> >
> >
> >
> >
> > "PvD" <webmaster@lpp-nh.nl> schreef in bericht
> >news:b717g8$o2r$1@news.codecharge.com...
> > > Hi Dirk,
> > >
> > > try this:
> > >
> > > <a href="javascript:void(0);" onClick="window.open('newwin.html',
> > 'newwin',
> > > 'width=400, height=600, resizable=1, scrollbars=1')">linkname</a>
> > >
> > > or:
> > >
> > > <SCRIPT LANGUAGE="Java Script">
> > > <!--//
> > > function openit(sURL){
> > > newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
> > > directories=no, menu bar=no, resizable=yes,
> > > status=yes, width=600, height=500");
> > > }
> > > //-->
> > > </SCRIPT>
> > >
> > > <A HREF="javascript:openit ('newwin.html')">
> > > open window with no toolbars</A>
> > >
> > > or extra in the A HREF tag to hide the link:
> > > <A HREF="javascript:void(0);" onClick="javascript:openit
> > > ('clicktext.html')">
> > > open window with no toolbars</A>
> > >
> > > good luck,
> > >
> > > Peter
> > >
> > > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> > >news:b5t8nn$19g$1@news.codecharge.com...
> > > > I work with CodeCharge.
> > > > Does anybody knows how to make a NEW (popup) window.
> > > > Example : see portal and when make choise of Administration or Event
> > THEN
> > > a
> > > > New Window will start (With Close Button)
> > > >
> > > > Thanks
> > > >
> > > > --
> > > > Dirk Dekker
> > > >
> > > >
> > >
> > >
> >
> >
>
>

PvD
Posted: 04/11/2003, 8:32 AM

Hi Dirk,

I use CodeCharge Studio which allows you to switch from design to HTML. From
your reply I gather that you use CodeCharge and that it doesn't let you see
the HTML itself.
As far as I know that doesn't really matter, because CodeCharge will not
change the HTML code for the javascript that I gave you.
So if you put that code into the HTML generated with Dreamweaver, it should
work.

best regards,

Peter

"H.F. Dekker" <h.dekker@ps.nl> wrote in message
news:b73no7$72n$1@news.codecharge.com...
> Hi Peter,
> When something has been changed in CodeCharge by way of HTML-Edittor
> (Dreamweaver) then the next time something is saved in the ".ccs" in
> codecharge the question "Something has changed outside of codecharge" is
> prompted.
> Off course you say "NO" because else you have to make the changes
again.(..)
> The best way of inclusing statements like formulas in CodeCharge is to
embed
> it in a FormPage Header&Footer or directly in de PageHeader.
> Will this work with your code also??
> Did you use that on the same way?
> Thanks!
> --
> Dirk Dekker
>
>
> "PvD" <webmaster@lpp-nh.nl> schreef in bericht
>news:b736f5$d2$1@news.codecharge.com...
> > Hi Dirk,
> >
> > when you swith to HTML, you can write the code straight into the href
tag.
> > If you want to go to another page, you always do so via a link. This
link
> is
> > defined as <a href="PAGENAME.html">LINK DESCRIPTION</a>.
> > The path to this link can be relative or absolute.
> > In your example it could be something like <a href=javascript:void(0);"
> >
>
onClick="window.open('http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmo
> > nth=&name=&', 'newwin', 'width=400, height=600, resizable=1,
> > scrollbars=1')">LINK DESCRIPTION</a>
> >
> > To close this window, you make a link as following:
> > <a href="JavaScript:window.close()">Close Window</a>
> >
> > Let me know if this works.
> >
> > Peter
> >
> > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> >news:b72107$g7q$1@news.codecharge.com...
> > > Hi Peter ,
> > > thanks for reaction my question
> > > I understand what you mean, but the question now is "WHERE" will I
write
> > the
> > > statements.
> > > In the PageHeader or FormProperties Header&Footer. I don't know.
> > > CodeCharge is nice to use but more functionalities like you suppose is
> > hard
> > > done.
> > >
> > > Lets take an example...
> > > As we take the example EmplDir.ccs and activate it in CodeCharge then
I
> > like
> > > to open a New Window when starting:
> > > http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
> > > Thus Logging in / Members/ Edit (bob Kuch)
> > > Maybe you have the answer for me !!
> > > Thanks again.
> > >
> > > Dirk Dekker
> > >
> > >
> > >
> > >
> > > "PvD" <webmaster@lpp-nh.nl> schreef in bericht
> > >news:b717g8$o2r$1@news.codecharge.com...
> > > > Hi Dirk,
> > > >
> > > > try this:
> > > >
> > > > <a href="javascript:void(0);" onClick="window.open('newwin.html',
> > > 'newwin',
> > > > 'width=400, height=600, resizable=1, scrollbars=1')">linkname</a>
> > > >
> > > > or:
> > > >
> > > > <SCRIPT LANGUAGE="Java Script">
> > > > <!--//
> > > > function openit(sURL){
> > > > newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
> > > > directories=no, menu bar=no, resizable=yes,
> > > > status=yes, width=600, height=500");
> > > > }
> > > > //-->
> > > > </SCRIPT>
> > > >
> > > > <A HREF="javascript:openit ('newwin.html')">
> > > > open window with no toolbars</A>
> > > >
> > > > or extra in the A HREF tag to hide the link:
> > > > <A HREF="javascript:void(0);" onClick="javascript:openit
> > > > ('clicktext.html')">
> > > > open window with no toolbars</A>
> > > >
> > > > good luck,
> > > >
> > > > Peter
> > > >
> > > > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> > > >news:b5t8nn$19g$1@news.codecharge.com...
> > > > > I work with CodeCharge.
> > > > > Does anybody knows how to make a NEW (popup) window.
> > > > > Example : see portal and when make choise of Administration or
Event
> > > THEN
> > > > a
> > > > > New Window will start (With Close Button)
> > > > >
> > > > > Thanks
> > > > >
> > > > > --
> > > > > Dirk Dekker
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>

H.F. Dekker
Posted: 04/12/2003, 4:20 AM

Hi Peter,
I really don'd know where to put the statement defined like <a
href="PAGENAME.html">LINK DESCRIPTION</a>.
When I open in Dreamweaver the page EmpsGrid.html, I see
{Header}
Table of Search elemets for Login
Table of EmpsRecord
{Footer}

The action wanted is when I choose: Administration / Members / Edit
Employees / ->Edit (URL, so undelined) what in reality means
http://eureka:81/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
then a new Page will be opened.
So your advise is "..when you swith to HTML, you can write the code straight
into the href > tag..."

On that spot (Form Title =Emps) in the Html SourceCode (opened by
Dreamweaver) I see the following href tag:
<!--BeginDListemps-->
<tr>
<td ><a
href="%7Bemp_id_URLLink%7D?emp_id=%7BPrmemp_id_emp_id%7D&%7BTransitParam
s%7D"><font style="font-size: 10pt; color: #000000; font-family: Arial,
Tahoma, Verdana, Helvetica">{emp_id}</font></a> </td>
<td ><font style="font-size: 10pt; color: #000000; font-family: Arial,
Tahoma, Verdana, Helvetica">{emp_login} </font></td>
<td ><font style="font-size: 10pt; color: #000000; font-family: Arial,
Tahoma, Verdana, Helvetica">{name} </font></td>
<td ><font style="font-size: 10pt; color: #000000; font-family: Arial,
Tahoma, Verdana, Helvetica">{emp_level} </font></td>
<td ><font style="font-size: 10pt; color: #000000; font-family: Arial,
Tahoma, Verdana, Helvetica">{manmonth} </font></td>
</tr>
<!--EndDListemps-->

Now my question is where do I write down the code you advise???

--
Dirk Dekker


"PvD" <webmaster@lpp-nh.nl> schreef in bericht
news:b76n5n$p9h$1@news.codecharge.com...
> Hi Dirk,
>
> I use CodeCharge Studio which allows you to switch from design to HTML.
From
> your reply I gather that you use CodeCharge and that it doesn't let you
see
> the HTML itself.
> As far as I know that doesn't really matter, because CodeCharge will not
> change the HTML code for the javascript that I gave you.
> So if you put that code into the HTML generated with Dreamweaver, it
should
> work.
>
> best regards,
>
> Peter
>
> "H.F. Dekker" <h.dekker@ps.nl> wrote in message
>news:b73no7$72n$1@news.codecharge.com...
> > Hi Peter,
> > When something has been changed in CodeCharge by way of HTML-Edittor
> > (Dreamweaver) then the next time something is saved in the ".ccs" in
> > codecharge the question "Something has changed outside of codecharge" is
> > prompted.
> > Off course you say "NO" because else you have to make the changes
> again.(..)
> > The best way of inclusing statements like formulas in CodeCharge is to
> embed
> > it in a FormPage Header&Footer or directly in de PageHeader.
> > Will this work with your code also??
> > Did you use that on the same way?
> > Thanks!
> > --
> > Dirk Dekker
> >
> >
> > "PvD" <webmaster@lpp-nh.nl> schreef in bericht
> >news:b736f5$d2$1@news.codecharge.com...
> > > Hi Dirk,
> > >
> > > when you swith to HTML, you can write the code straight into the href
> tag.
> > > If you want to go to another page, you always do so via a link. This
> link
> > is
> > > defined as <a href="PAGENAME.html">LINK DESCRIPTION</a>.
> > > The path to this link can be relative or absolute.
> > > In your example it could be something like <a
href=javascript:void(0);"
> > >
> >
>
onClick="window.open('http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmo
> > > nth=&name=&', 'newwin', 'width=400, height=600, resizable=1,
> > > scrollbars=1')">LINK DESCRIPTION</a>
> > >
> > > To close this window, you make a link as following:
> > > <a href="JavaScript:window.close()">Close Window</a>
> > >
> > > Let me know if this works.
> > >
> > > Peter
> > >
> > > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> > >news:b72107$g7q$1@news.codecharge.com...
> > > > Hi Peter ,
> > > > thanks for reaction my question
> > > > I understand what you mean, but the question now is "WHERE" will I
> write
> > > the
> > > > statements.
> > > > In the PageHeader or FormProperties Header&Footer. I don't know.
> > > > CodeCharge is nice to use but more functionalities like you suppose
is
> > > hard
> > > > done.
> > > >
> > > > Lets take an example...
> > > > As we take the example EmplDir.ccs and activate it in CodeCharge
then
> I
> > > like
> > > > to open a New Window when starting:
> > > > http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
> > > > Thus Logging in / Members/ Edit (bob Kuch)
> > > > Maybe you have the answer for me !!
> > > > Thanks again.
> > > >
> > > > Dirk Dekker
> > > >
> > > >
> > > >
> > > >
> > > > "PvD" <webmaster@lpp-nh.nl> schreef in bericht
> > > >news:b717g8$o2r$1@news.codecharge.com...
> > > > > Hi Dirk,
> > > > >
> > > > > try this:
> > > > >
> > > > > <a href="javascript:void(0);" onClick="window.open('newwin.html',
> > > > 'newwin',
> > > > > 'width=400, height=600, resizable=1, scrollbars=1')">linkname</a>
> > > > >
> > > > > or:
> > > > >
> > > > > <SCRIPT LANGUAGE="Java Script">
> > > > > <!--//
> > > > > function openit(sURL){
> > > > > newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
> > > > > directories=no, menu bar=no, resizable=yes,
> > > > > status=yes, width=600, height=500");
> > > > > }
> > > > > //-->
> > > > > </SCRIPT>
> > > > >
> > > > > <A HREF="javascript:openit ('newwin.html')">
> > > > > open window with no toolbars</A>
> > > > >
> > > > > or extra in the A HREF tag to hide the link:
> > > > > <A HREF="javascript:void(0);" onClick="javascript:openit
> > > > > ('clicktext.html')">
> > > > > open window with no toolbars</A>
> > > > >
> > > > > good luck,
> > > > >
> > > > > Peter
> > > > >
> > > > > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> > > > >news:b5t8nn$19g$1@news.codecharge.com...
> > > > > > I work with CodeCharge.
> > > > > > Does anybody knows how to make a NEW (popup) window.
> > > > > > Example : see portal and when make choise of Administration or
> Event
> > > > THEN
> > > > > a
> > > > > > New Window will start (With Close Button)
> > > > > >
> > > > > > Thanks
> > > > > >
> > > > > > --
> > > > > > Dirk Dekker
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>

PvD
Posted: 04/12/2003, 6:40 AM

Hi Dirk,

I don't use Dreamweaver, but from what I can see in your description it
looks like the following:
<a
href="%7Bemp_id_URLLink%7D?emp_id=%7BPrmemp_id_emp_id%7D&%7BTransitParam
s%7D"> is the actual href tag.
<font style="font-size: 10pt; color: #000000; font-family: Arial, Tahoma,
Verdana, Helvetica"> is the way the link is displayed.
{emp_id} is the actual (dynamically created) link.
</font></a> are the closing tags for your link.

So as far as I can see it would be:

<a href="javscript: void(0);"
onClick="window.open('%7Bemp_id_URLLink%7D?emp_id=%7BPrmemp_id_emp_id%7D&
;%7BTransitParams%7D', 'newwin', 'scrollbars=no, toolbar=no, directories=no,
menu bar=no, resizable=yes, status=no, width=800, height=600')"><font
style="font-size: 10pt; color: #000000; font-family: Arial, Tahoma, Verdana,
Helvetica">{emp_id}</font></a>

On clicking the link, it should open a new window name "newwin" (you can
alter that name in your target description if you so desire). It has no
scrollbars, no toolbar, no directories, no menu bar, is resizable and has a
size of 800 x 600. Obviously you can change these attributes at will.

An alternative to all this would be to leave the link as it is, but add
target="_blank" to your link description. This too will open the link in a
new window, but you have no control over what it looks like, nor can you
stop the link from showing in the status bar.
This would look like:

<a
href="%7Bemp_id_URLLink%7D?emp_id=%7BPrmemp_id_emp_id%7D&%7BTransitParam
s%7D" target="_blank"><font style="font-size: 10pt; color: #000000;
font-family: Arial, Tahoma, Verdana, Helvetica">{emp_id}</font></a>

Hope this solves it.

grtz,

Peter


"H.F. Dekker" <h.dekker@ps.nl> wrote in message
news:b78sqc$oih$1@news.codecharge.com...
> Hi Peter,
> I really don'd know where to put the statement defined like <a
> href="PAGENAME.html">LINK DESCRIPTION</a>.
> When I open in Dreamweaver the page EmpsGrid.html, I see
> {Header}
> Table of Search elemets for Login
> Table of EmpsRecord
> {Footer}
>
> The action wanted is when I choose: Administration / Members / Edit
> Employees / ->Edit (URL, so undelined) what in reality means
> http://eureka:81/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
> then a new Page will be opened.
> So your advise is "..when you swith to HTML, you can write the code
straight
> into the href > tag..."
>
> On that spot (Form Title =Emps) in the Html SourceCode (opened by
> Dreamweaver) I see the following href tag:
> <!--BeginDListemps-->
> <tr>
> <td ><a
>
href="%7Bemp_id_URLLink%7D?emp_id=%7BPrmemp_id_emp_id%7D&%7BTransitParam
> s%7D"><font style="font-size: 10pt; color: #000000; font-family: Arial,
> Tahoma, Verdana, Helvetica">{emp_id}</font></a> </td>
> <td ><font style="font-size: 10pt; color: #000000; font-family:
Arial,
> Tahoma, Verdana, Helvetica">{emp_login} </font></td>
> <td ><font style="font-size: 10pt; color: #000000; font-family:
Arial,
> Tahoma, Verdana, Helvetica">{name} </font></td>
> <td ><font style="font-size: 10pt; color: #000000; font-family:
Arial,
> Tahoma, Verdana, Helvetica">{emp_level} </font></td>
> <td ><font style="font-size: 10pt; color: #000000; font-family:
Arial,
> Tahoma, Verdana, Helvetica">{manmonth} </font></td>
> </tr>
> <!--EndDListemps-->
>
> Now my question is where do I write down the code you advise???
>
> --
> Dirk Dekker
>
>
> "PvD" <webmaster@lpp-nh.nl> schreef in bericht
>news:b76n5n$p9h$1@news.codecharge.com...
> > Hi Dirk,
> >
> > I use CodeCharge Studio which allows you to switch from design to HTML.
> From
> > your reply I gather that you use CodeCharge and that it doesn't let you
> see
> > the HTML itself.
> > As far as I know that doesn't really matter, because CodeCharge will not
> > change the HTML code for the javascript that I gave you.
> > So if you put that code into the HTML generated with Dreamweaver, it
> should
> > work.
> >
> > best regards,
> >
> > Peter
> >
> > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> >news:b73no7$72n$1@news.codecharge.com...
> > > Hi Peter,
> > > When something has been changed in CodeCharge by way of HTML-Edittor
> > > (Dreamweaver) then the next time something is saved in the ".ccs" in
> > > codecharge the question "Something has changed outside of codecharge"
is
> > > prompted.
> > > Off course you say "NO" because else you have to make the changes
> > again.(..)
> > > The best way of inclusing statements like formulas in CodeCharge is to
> > embed
> > > it in a FormPage Header&Footer or directly in de PageHeader.
> > > Will this work with your code also??
> > > Did you use that on the same way?
> > > Thanks!
> > > --
> > > Dirk Dekker
> > >
> > >
> > > "PvD" <webmaster@lpp-nh.nl> schreef in bericht
> > >news:b736f5$d2$1@news.codecharge.com...
> > > > Hi Dirk,
> > > >
> > > > when you swith to HTML, you can write the code straight into the
href
> > tag.
> > > > If you want to go to another page, you always do so via a link. This
> > link
> > > is
> > > > defined as <a href="PAGENAME.html">LINK DESCRIPTION</a>.
> > > > The path to this link can be relative or absolute.
> > > > In your example it could be something like <a
> href=javascript:void(0);"
> > > >
> > >
> >
>
onClick="window.open('http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmo
> > > > nth=&name=&', 'newwin', 'width=400, height=600, resizable=1,
> > > > scrollbars=1')">LINK DESCRIPTION</a>
> > > >
> > > > To close this window, you make a link as following:
> > > > <a href="JavaScript:window.close()">Close Window</a>
> > > >
> > > > Let me know if this works.
> > > >
> > > > Peter
> > > >
> > > > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> > > >news:b72107$g7q$1@news.codecharge.com...
> > > > > Hi Peter ,
> > > > > thanks for reaction my question
> > > > > I understand what you mean, but the question now is "WHERE" will I
> > write
> > > > the
> > > > > statements.
> > > > > In the PageHeader or FormProperties Header&Footer. I don't know.
> > > > > CodeCharge is nice to use but more functionalities like you
suppose
> is
> > > > hard
> > > > > done.
> > > > >
> > > > > Lets take an example...
> > > > > As we take the example EmplDir.ccs and activate it in CodeCharge
> then
> > I
> > > > like
> > > > > to open a New Window when starting:
> > > > > http://eureka/EmpsRecord.php?emp_id=7&emp_login=&manmonth=&name=&
> > > > > Thus Logging in / Members/ Edit (bob Kuch)
> > > > > Maybe you have the answer for me !!
> > > > > Thanks again.
> > > > >
> > > > > Dirk Dekker
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > "PvD" <webmaster@lpp-nh.nl> schreef in bericht
> > > > >news:b717g8$o2r$1@news.codecharge.com...
> > > > > > Hi Dirk,
> > > > > >
> > > > > > try this:
> > > > > >
> > > > > > <a href="javascript:void(0);"
onClick="window.open('newwin.html',
> > > > > 'newwin',
> > > > > > 'width=400, height=600, resizable=1,
scrollbars=1')">linkname</a>
> > > > > >
> > > > > > or:
> > > > > >
> > > > > > <SCRIPT LANGUAGE="Java Script">
> > > > > > <!--//
> > > > > > function openit(sURL){
> > > > > > newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no,
> > > > > > directories=no, menu bar=no, resizable=yes,
> > > > > > status=yes, width=600, height=500");
> > > > > > }
> > > > > > //-->
> > > > > > </SCRIPT>
> > > > > >
> > > > > > <A HREF="javascript:openit ('newwin.html')">
> > > > > > open window with no toolbars</A>
> > > > > >
> > > > > > or extra in the A HREF tag to hide the link:
> > > > > > <A HREF="javascript:void(0);" onClick="javascript:openit
> > > > > > ('clicktext.html')">
> > > > > > open window with no toolbars</A>
> > > > > >
> > > > > > good luck,
> > > > > >
> > > > > > Peter
> > > > > >
> > > > > > "H.F. Dekker" <h.dekker@ps.nl> wrote in message
> > > > > >news:b5t8nn$19g$1@news.codecharge.com...
> > > > > > > I work with CodeCharge.
> > > > > > > Does anybody knows how to make a NEW (popup) window.
> > > > > > > Example : see portal and when make choise of Administration or
> > Event
> > > > > THEN
> > > > > > a
> > > > > > > New Window will start (With Close Button)
> > > > > > >
> > > > > > > Thanks
> > > > > > >
> > > > > > > --
> > > > > > > Dirk Dekker
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>


   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

Web Database

Join thousands of Web developers who build Web applications with minimal coding.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.