[jQuery] Re: Taconite and Jquery 1.2.3

2008-02-25 Thread lvp1138


ok... seems like jframe is still using some kind of target.

I'll play around with that code. Thanks!

Peter :)

On Feb 24, 5:54 pm, Mike Alsup [EMAIL PROTECTED] wrote:
 On Sun, Feb 24, 2008 at 7:04 PM, lvp1138 [EMAIL PROTECTED] wrote:

  Hi Mike,

  It doesn't have a target... take a look at the source code...

  Peter

  On Feb 24, 1:25 pm, Mike Alsup [EMAIL PROTECTED] wrote:
   Peter,  this is the same problem as before.  You cannot use the form
   plugin's 'target' option if your server is returning XML documents.
   That's
   just not going to work.

   Mike

 Take a look at ab-jquery.jframe.js.  This is what I find in there (starting
 at line 83):

 jQuery(form).ajaxSubmit({
 target: target,
 beforeSubmit: function(formArray) {
 formArray.push({
 name:submit,
 value: jQuery(input).attr(value)
 });
 },
 success: function() {
 target.attr(src, jQuery(form).attr(action));
 eval(target.attr(onload));
 target.activateJFrame();
 }

 });


[jQuery] Re: Taconite and Jquery 1.2.3

2008-02-24 Thread lvp1138

Hi Mike,

It doesn't have a target... take a look at the source code...

Peter

On Feb 24, 1:25 pm, Mike Alsup [EMAIL PROTECTED] wrote:
 Peter,  this is the same problem as before.  You cannot use the form
 plugin's 'target' option if your server is returning XML documents.  That's
 just not going to work.

 Mike

 On Thu, Feb 21, 2008 at 4:14 PM, lvp1138 [EMAIL PROTECTED] wrote:

  Thanks Mike. I'll keep checking. Maybe I'm doing some mistake with the
  javascript file.

  I do have another problem that perhaps you know what is causing it. I
  created this example:

 http://72.18.207.149/english/taconite-test.html

  When you click on the form, the form disappears, because the
  subsequent page has no html, only taconite commands. So to solve the
  problem, I'm using a replaceContent to again put a copy of the form on
  the original DIV, which has ID=test:

  taconite
 replaceContent select=#window-new
 Test successful
 /replaceContent
 slideToggle select=#window-new value=10 /

 replaceContent select=#test
 BR /
 form method=post action=somecgi.cgi

 ... form here ...

 /form
 /replaceContent
  /taconite

  For some reason, the replacecontent is not inserting the HTML, and
  firebug generates the node cannot be inserted message.

  Any theories?

  Also, I appreciate that you take the time to help people with your
  plugins. You should put a donation button on your site. Your plugins
  are great.

  Peter :)

  On Feb 21, 5:16 am, Mike Alsup [EMAIL PROTECTED] wrote:
   Peter,

   I just updated the demos to use jQuery 1.2.3 and I'm not seeing any
   problems:

  http://www.malsup.com/jquery/taconite/#examples

   The diff between replace and replaceContent boils down to what is being
   replaced.  With replace, the entire element is replaced.  With
   replaceContent only the content of the selected element is replaced
  (just
   like jQuery's html function).

   Mike

   On Wed, Feb 20, 2008 at 8:20 PM, lvp1138 [EMAIL PROTECTED] wrote:

Has anyone been able to use Mike's great Taconite plugin with the
latest jquery?

When using Jquery 1.2.1, Firebug shows:

[taconite] Plugin Version: 3.01
[taconite] [AJAX response] content-type: text/xml; status: 200 OK; has
responseXML: true
[taconite] type: undefined
[taconite] responseXML: [object XMLDocument]
[taconite] XML document root: taconite
...
[taconite] time to process response: 171ms

If I replace Jquery with 1.2.3 and do no change in coding:

[taconite] Plugin Version: 3.01
[taconite] [AJAX response] content-type: text/xml; status: 200 OK; has
responseXML: true
[taconite] type: html
[taconite] responseXML: [object XMLDocument]
[taconite] jQuery core httpData returned: taconite
...
[taconite] httpData: response is not XML (or not valid XML)

I've even removed all HTML and left Taconite's replacecontent empty
to see if perhaps I had some typo somewhere. But it anyway did the
same.

Talking about replacecontent, what is the difference between
Taconite's replace and replacecontent? I've played with both and
sometimes I can make things work with one and sometimes with the
other.

Peter :)


[jQuery] Re: Taconite and Jquery 1.2.3

2008-02-24 Thread Mike Alsup
On Sun, Feb 24, 2008 at 7:04 PM, lvp1138 [EMAIL PROTECTED] wrote:


 Hi Mike,

 It doesn't have a target... take a look at the source code...

 Peter

 On Feb 24, 1:25 pm, Mike Alsup [EMAIL PROTECTED] wrote:
  Peter,  this is the same problem as before.  You cannot use the form
  plugin's 'target' option if your server is returning XML documents.
  That's
  just not going to work.
 
  Mike



Take a look at ab-jquery.jframe.js.  This is what I find in there (starting
at line 83):

jQuery(form).ajaxSubmit({
target: target,
beforeSubmit: function(formArray) {
formArray.push({
name:submit,
value: jQuery(input).attr(value)
});
},
success: function() {
target.attr(src, jQuery(form).attr(action));
eval(target.attr(onload));
target.activateJFrame();
}
});


[jQuery] Re: Taconite and Jquery 1.2.3

2008-02-21 Thread Mike Alsup
Peter,

I just updated the demos to use jQuery 1.2.3 and I'm not seeing any
problems:

http://www.malsup.com/jquery/taconite/#examples

The diff between replace and replaceContent boils down to what is being
replaced.  With replace, the entire element is replaced.  With
replaceContent only the content of the selected element is replaced (just
like jQuery's html function).

Mike


On Wed, Feb 20, 2008 at 8:20 PM, lvp1138 [EMAIL PROTECTED] wrote:


 Has anyone been able to use Mike's great Taconite plugin with the
 latest jquery?

 When using Jquery 1.2.1, Firebug shows:

 [taconite] Plugin Version: 3.01
 [taconite] [AJAX response] content-type: text/xml; status: 200 OK; has
 responseXML: true
 [taconite] type: undefined
 [taconite] responseXML: [object XMLDocument]
 [taconite] XML document root: taconite
 ...
 [taconite] time to process response: 171ms

 If I replace Jquery with 1.2.3 and do no change in coding:

 [taconite] Plugin Version: 3.01
 [taconite] [AJAX response] content-type: text/xml; status: 200 OK; has
 responseXML: true
 [taconite] type: html
 [taconite] responseXML: [object XMLDocument]
 [taconite] jQuery core httpData returned: taconite
 ...
 [taconite] httpData: response is not XML (or not valid XML)

 I've even removed all HTML and left Taconite's replacecontent empty
 to see if perhaps I had some typo somewhere. But it anyway did the
 same.

 Talking about replacecontent, what is the difference between
 Taconite's replace and replacecontent? I've played with both and
 sometimes I can make things work with one and sometimes with the
 other.

 Peter :)



[jQuery] Re: Taconite and Jquery 1.2.3

2008-02-21 Thread lvp1138

Thanks Mike. I'll keep checking. Maybe I'm doing some mistake with the
javascript file.

I do have another problem that perhaps you know what is causing it. I
created this example:

http://72.18.207.149/english/taconite-test.html

When you click on the form, the form disappears, because the
subsequent page has no html, only taconite commands. So to solve the
problem, I'm using a replaceContent to again put a copy of the form on
the original DIV, which has ID=test:

taconite
replaceContent select=#window-new
Test successful
/replaceContent
slideToggle select=#window-new value=10 /

replaceContent select=#test
BR /
form method=post action=somecgi.cgi

... form here ...

/form
/replaceContent
/taconite

For some reason, the replacecontent is not inserting the HTML, and
firebug generates the node cannot be inserted message.

Any theories?

Also, I appreciate that you take the time to help people with your
plugins. You should put a donation button on your site. Your plugins
are great.

Peter :)


On Feb 21, 5:16 am, Mike Alsup [EMAIL PROTECTED] wrote:
 Peter,

 I just updated the demos to use jQuery 1.2.3 and I'm not seeing any
 problems:

 http://www.malsup.com/jquery/taconite/#examples

 The diff between replace and replaceContent boils down to what is being
 replaced.  With replace, the entire element is replaced.  With
 replaceContent only the content of the selected element is replaced (just
 like jQuery's html function).

 Mike

 On Wed, Feb 20, 2008 at 8:20 PM, lvp1138 [EMAIL PROTECTED] wrote:

  Has anyone been able to use Mike's great Taconite plugin with the
  latest jquery?

  When using Jquery 1.2.1, Firebug shows:

  [taconite] Plugin Version: 3.01
  [taconite] [AJAX response] content-type: text/xml; status: 200 OK; has
  responseXML: true
  [taconite] type: undefined
  [taconite] responseXML: [object XMLDocument]
  [taconite] XML document root: taconite
  ...
  [taconite] time to process response: 171ms

  If I replace Jquery with 1.2.3 and do no change in coding:

  [taconite] Plugin Version: 3.01
  [taconite] [AJAX response] content-type: text/xml; status: 200 OK; has
  responseXML: true
  [taconite] type: html
  [taconite] responseXML: [object XMLDocument]
  [taconite] jQuery core httpData returned: taconite
  ...
  [taconite] httpData: response is not XML (or not valid XML)

  I've even removed all HTML and left Taconite's replacecontent empty
  to see if perhaps I had some typo somewhere. But it anyway did the
  same.

  Talking about replacecontent, what is the difference between
  Taconite's replace and replacecontent? I've played with both and
  sometimes I can make things work with one and sometimes with the
  other.

  Peter :)