[HTML_AJAX-devel] RE: Html_ajax-devel Digest, Vol 8, Issue 4
edbgrafika at seznam.cz
edbgrafika at seznam.cz
Wed May 10 00:39:19 PDT 2006
Will be in 0.4.0 any charset options for submit form values..
Thanks a lot
Mike Dika
-----Original Message-----
From: html_ajax-devel-bounces at lists.bluga.net
[mailto:html_ajax-devel-bounces at lists.bluga.net] On Behalf Of
html_ajax-devel-request at lists.bluga.net
Sent: Saturday, April 08, 2006 7:00 PM
To: html_ajax-devel at lists.bluga.net
Subject: Html_ajax-devel Digest, Vol 8, Issue 4
Send Html_ajax-devel mailing list submissions to
html_ajax-devel at lists.bluga.net
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.bluga.net/mailman/listinfo/html_ajax-devel
or, via email, send a message with subject or body 'help' to
html_ajax-devel-request at lists.bluga.net
You can reach the person managing the list at
html_ajax-devel-owner at lists.bluga.net
When replying, please edit your Subject line so it is more specific than
"Re: Contents of Html_ajax-devel digest..."
Today's Topics:
1. Releasing 0.4.0 today (Joshua Eichorn)
2. style not show up in ie 6 (Tim Arney)
3. Re: style not show up in ie 6 (Joshua Eichorn)
4. Re: style not show up in ie 6 (Tim Arney)
----------------------------------------------------------------------
Message: 1
Date: Fri, 07 Apr 2006 10:05:42 -0700
From: Joshua Eichorn <josh at bluga.net>
Subject: [HTML_AJAX-devel] Releasing 0.4.0 today
To: HTML_AJAX <html_ajax-devel at lists.bluga.net>
Message-ID: <44369BE6.2060103 at bluga.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
I'll be releasing 0.4.0 in a couple hours.
let me know if anyone has any thoughts on it.
http://wiki.bluga.net/HTML_AJAX/release-0.4.0?
-josh
------------------------------
Message: 2
Date: Fri, 7 Apr 2006 21:25:32 -0400
From: "Tim Arney" <soloper at gmail.com>
Subject: [HTML_AJAX-devel] style not show up in ie 6
To: html_ajax-devel at lists.bluga.net
Message-ID:
<4bc08c4f0604071825x7939d4a7yf404f710aa1ce007 at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Hi
I'm running the lastest version 4.0 and I'm having an issue with getting
a style to show up with the following code it works fine in firefox...
in ie the div text gets updated but the text doesn't change color like
it should.
ActionTest.php
<?php
require_once 'HTML/AJAX/Action.php';
class ActionTest
{
function ActionTest()
{
}
function update()
{
$response = new HTML_AJAX_Action();
$response->assignAttr('status',array('class'=>'mystyle','innerHTML'=>'up
dated'));
return $response;
}
}
?>
auto_server.php
<?php
require_once 'HTML/AJAX/Server.php';
class AutoServer extends HTML_AJAX_Server
{
// this flag must be set for your init methods to be used
var $initMethods = true;
function initActionTest()
{
require_once 'ActionTest.php';
$obj = new ActionTest();
$this->registerClass($obj);
}
}
$server = new AutoServer();
$server->handleRequest();
?>
index.php
<head>
<head>
<script type="text/javascript"
src="auto_server.php?client=all"></script>
<script type="text/javascript"
src="auto_server.php?client=haserializer"></script>
<script type="text/javascript"
src="auto_server.php?stub=actiontest"></script>
<style>
.mystyle
{
color:#ff0000;
}
</style>
<link href="style.css" rel="stylesheet" type="text/css"> <title></title>
</head> <body> <div id="status">This is a test</div> <script> var obj_cb
= {
//dummy code
}
var obj = new actiontest(obj_cb);
</script>
<a href="javascript:obj.update()">update div</a>
</body>
</html>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://lists.bluga.net/pipermail/html_ajax-devel/attachments/20060407/be
00e5b3/attachment-0001.html
------------------------------
Message: 3
Date: Fri, 07 Apr 2006 19:09:49 -0700
From: Joshua Eichorn <josh at bluga.net>
Subject: Re: [HTML_AJAX-devel] style not show up in ie 6
To: Tim Arney <soloper at gmail.com>
Cc: html_ajax-devel at lists.bluga.net
Message-ID: <44371B6D.1060706 at bluga.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
We use setAttribute so things should be working fine, i'll add some test
cases this weekend and see whats going on.
-josh
Tim Arney wrote:
> Hi
>
> I'm running the lastest version 4.0 and I'm having an issue with
> getting a style to show up with the following code it works fine in
> firefox... in ie the div text gets updated but the text doesn't change
> color like it should.
>
> ActionTest.php
>
> <?php
> require_once 'HTML/AJAX/Action.php';
>
> class ActionTest
> {
> function ActionTest()
> {
>
> }
>
> function update()
> {
> $response = new HTML_AJAX_Action();
>
>
$response->assignAttr('status',array('class'=>'mystyle','innerHTML'=>'up
dated'));
> return $response;
> }
> }
>
> ?>
>
> auto_server.php
>
> <?php
> require_once 'HTML/AJAX/Server.php';
>
> class AutoServer extends HTML_AJAX_Server
> {
> // this flag must be set for your init methods to be used
> var $initMethods = true;
>
> function initActionTest()
> {
> require_once 'ActionTest.php';
> $obj = new ActionTest();
> $this->registerClass($obj);
> }
> }
>
> $server = new AutoServer();
> $server->handleRequest();
> ?>
>
> index.php
> <head>
> <head>
> <script type="text/javascript"
> src="auto_server.php?client=all"></script>
> <script type="text/javascript"
> src="auto_server.php?client=haserializer"></script>
> <script type="text/javascript"
> src="auto_server.php?stub=actiontest"></script>
> <style>
> .mystyle
> {
> color:#ff0000;
> }
> </style>
> <link href="style.css" rel="stylesheet" type="text/css">
> <title></title>
> </head>
> <body>
> <div id="status">This is a test</div>
> <script>
> var obj_cb =
> {
> //dummy code
> }
>
> var obj = new actiontest(obj_cb);
> </script>
> <a href="javascript: obj.update()">update div</a>
> </body>
> </html>
> ----------------------------------------------------------------------
> --
>
> _______________________________________________
> Html_ajax-devel mailing list
> Html_ajax-devel at lists.bluga.net
> http://lists.bluga.net/mailman/listinfo/html_ajax-devel
>
------------------------------
Message: 4
Date: Fri, 7 Apr 2006 22:17:19 -0400
From: "Tim Arney" <soloper at gmail.com>
Subject: Re: [HTML_AJAX-devel] style not show up in ie 6
To: html_ajax-devel at lists.bluga.net
Message-ID:
<4bc08c4f0604071917n3c5ac455na5f3283d92f963f5 at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Okay - thanks... something I thought was interesting about the issue is
that when I save the 'rendered' code from Firefox to a .htm file and
open that with ie the text is the right color.
On 4/7/06, Joshua Eichorn <josh at bluga.net> wrote:
>
> We use setAttribute so things should be working fine, i'll add some
> test cases this weekend and see whats going on. -josh
> Tim Arney wrote:
> > Hi
> >
> > I'm running the lastest version 4.0 and I'm having an issue with
> > getting a style to show up with the following code it works fine in
> > firefox... in ie the div text gets updated but the text doesn't
> > change color like it should.
> >
> > ActionTest.php
> >
> > <?php
> > require_once 'HTML/AJAX/Action.php';
> >
> > class ActionTest
> > {
> > function ActionTest()
> > {
> >
> > }
> >
> > function update()
> > {
> > $response = new HTML_AJAX_Action();
> >
> >
> $response->assignAttr('status',array('class'=>'mystyle','innerHTML'=>'
> updated'));
> > return $response;
> > }
> > }
> >
> > ?>
> >
> > auto_server.php
> >
> > <?php
> > require_once 'HTML/AJAX/Server.php';
> >
> > class AutoServer extends HTML_AJAX_Server
> > {
> > // this flag must be set for your init methods to be used
> > var $initMethods = true;
> >
> > function initActionTest()
> > {
> > require_once 'ActionTest.php';
> > $obj = new ActionTest();
> > $this->registerClass($obj);
> > }
> > }
> >
> > $server = new AutoServer();
> > $server->handleRequest();
> > ?>
> >
> > index.php
> > <head>
> > <head>
> > <script type="text/javascript"
> src="auto_server.php?client=all"></script>
> > <script type="text/javascript"
> > src="auto_server.php?client=haserializer"></script>
> > <script type="text/javascript"
> > src="auto_server.php?stub=actiontest"></script>
> > <style>
> > .mystyle
> > {
> > color:#ff0000;
> > }
> > </style>
> > <link href="style.css" rel="stylesheet" type="text/css">
> > <title></title> </head>
> > <body>
> > <div id="status">This is a test</div>
> > <script>
> > var obj_cb =
> > {
> > //dummy code
> > }
> >
> > var obj = new actiontest(obj_cb);
> > </script>
> > <a href="javascript: obj.update()">update div</a>
> > </body>
> > </html>
> > --------------------------------------------------------------------
> > ----
> >
> > _______________________________________________
> > Html_ajax-devel mailing list Html_ajax-devel at lists.bluga.net
> > http://lists.bluga.net/mailman/listinfo/html_ajax-devel
> >
>
>
--
//tim.arney
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://lists.bluga.net/pipermail/html_ajax-devel/attachments/20060407/38
4357e2/attachment-0001.html
------------------------------
_______________________________________________
Html_ajax-devel mailing list
Html_ajax-devel at lists.bluga.net
http://lists.bluga.net/mailman/listinfo/html_ajax-devel
End of Html_ajax-devel Digest, Vol 8, Issue 4
*********************************************
More information about the Html_ajax-devel
mailing list