List Info

Thread: Maximun number of characters in large text area element




Maximun number of characters in large text area element
user name
2006-07-14 02:53:47
We are experiencing a very weird problem with the large text
area 
element. We have a custom element with one of those text
elements in it. 
One of the records has some text (total 682 characters).
When we call 
the record from a data sheet, the contents of the text
element shows in 
its entirety. The data even shows for the corresponding
PAGEID field in 
the data_fieldvalue table.

However, when we try to render the record on a page, the
field comes 
back with an [empty string] value. Any ideas?

Thanks in advance.

Victor
_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
Maximun number of characters in large text area element
user name
2006-07-18 18:50:28
Victor,
Check the value in the "MemoValue' field in the
data_fieldValue table.  I 
have noticed that when text exceeds a certain length, it is
automatically 
placed in the MemoValue field.


Kevin W. Whary
Sr. Internet Developer 
Seton Hall University
Division of Information Technology
973.275.2103



"Victor A. Cuya" <victorkratedesign.com> 
Sent by: commonspot-bounceschattyfig.figleaf.com
07/13/2006 10:53 PM
Please respond to
Commonspot Mailing List <commonspotchattyfig.figleaf.com>


To
Commonspot Mailing List <commonspotchattyfig.figleaf.com>
cc

Subject
[Commonspot] Maximun number of characters in large text area
element






We are experiencing a very weird problem with the large text
area 
element. We have a custom element with one of those text
elements in it. 
One of the records has some text (total 682 characters).
When we call 
the record from a data sheet, the contents of the text
element shows in 
its entirety. The data even shows for the corresponding
PAGEID field in 
the data_fieldvalue table.

However, when we try to render the record on a page, the
field comes 
back with an [empty string] value. Any ideas?

Thanks in advance.

Victor
_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
Maximun number of characters in large text area element
user name
2006-07-18 20:56:02
Kevin,

that did the trick! Thanks a lot for the tip.

Victor

Kevin Whary wrote:
> Victor,
> Check the value in the "MemoValue' field in the
data_fieldValue table.  I 
> have noticed that when text exceeds a certain length,
it is automatically 
> placed in the MemoValue field.
>
>
> Kevin W. Whary
> Sr. Internet Developer 
> Seton Hall University
> Division of Information Technology
> 973.275.2103
>
>
>   
_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
javascript in custom script
user name
2006-07-26 16:30:03
I have a custom script element that contains a conditional
statement 
with different sets of javascript.  The problem is that it
appears that 
the element strips out anything within the javascript tags. 
I know the 
script works and plain text gets displayed correctly.  Is
there a way to 
  keep it from stripping out javascript?

Any suggestions would be highly appreciated.  Thanks!

--Jeff


_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
javascript in custom script
user name
2006-07-26 16:43:53
Is the javascript inside cfoutput tags?

RDB

At 12:30 PM 7/26/2006, you wrote:
>I have a custom script element that contains a
conditional statement with 
>different sets of javascript.  The problem is that it
appears that the 
>element strips out anything within the javascript tags. 
I know the script 
>works and plain text gets displayed correctly.  Is there
a way to  keep it 
>from stripping out javascript?
>
>Any suggestions would be highly appreciated.  Thanks!
>
>--Jeff
>
>
>_______________________________________________
>Commonspotchattyfig.figleaf.com
>To change your subscription options or search the
archive:
>http://chattyfig.figleaf.com/mailman/listinfo/commonspot

>
>Brought to you by Fig Leaf Software
>Premier Authorized Paperthin Consulting and Training
>http://www.figleaf.com
>http://training.figleaf.c
om

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
R. David Betz
Sr. Web Developer
RainCastle Communications
288 Walnut Street
Newton, MA 02460
Phone: 617.965.2681 x229
FAX: 617.527.1221
www.raincastle.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
javascript in custom script
user name
2006-07-26 17:40:38
Here is a snippet.

...
<cfelse> <!--- REGULAR PAGE --->
	<cfoutput>
	<script language="JavaScript"
type="text/javascript">
		if (typeof cr_track != 'undefined') {cr_track(0);}
	</script>
	<!-- WSP END -->foo
	</cfoutput>
</cfif>

The "foo" displays just fine and the javascript
is nowhere to be seen in 
the page source.  We're running CS 4.6 sp2.

--Jeff


On 7/26/2006 12:43 PM, R. David Betz wrote:
> Is the javascript inside cfoutput tags?
> 
> RDB
> 
> At 12:30 PM 7/26/2006, you wrote:
> 
>> I have a custom script element that contains a
conditional statement 
>> with different sets of javascript.  The problem is
that it appears 
>> that the element strips out anything within the
javascript tags.  I 
>> know the script works and plain text gets displayed
correctly.  Is 
>> there a way to  keep it from stripping out
javascript?
>>
>> Any suggestions would be highly appreciated. 
Thanks!
>>
>> --Jeff
>>
>>
>> _______________________________________________
>> Commonspotchattyfig.figleaf.com
>> To change your subscription options or search the
archive:
>> http://chattyfig.figleaf.com/mailman/listinfo/commonspot

>>
>> Brought to you by Fig Leaf Software
>> Premier Authorized Paperthin Consulting and
Training
>> http://www.figleaf.com
>> http://training.figleaf.c
om
> 
> 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> R. David Betz
> Sr. Web Developer
> RainCastle Communications
> 288 Walnut Street
> Newton, MA 02460
> Phone: 617.965.2681 x229
> FAX: 617.527.1221
> www.raincastle.com
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> 
> _______________________________________________
> Commonspotchattyfig.figleaf.com
> To change your subscription options or search the
archive:
> http://chattyfig.figleaf.com/mailman/listinfo/commonspot

> 
> Brought to you by Fig Leaf Software
> Premier Authorized Paperthin Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.c
om

-- 
____________________________________________________________
____
Jeff Langevin                                     Web
Programmer
Appalachian Mountain Club          jlangevin at outdoors dot
org
5 Joy Street, Boston, MA 02108                 617-523-0655
x302


_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
javascript in custom script
user name
2006-07-26 18:03:10
Hey Jeff,

I have seen some very weird behavior trying to
<cfoutput> Javascript 
code. I have had better results using writeOuput instead.
Don't ask me 
why. If you use Firefox, you can check the Javascript
debugger extension 
to see if the code is being processed.

Victor

Jeff Langevin wrote:
> Here is a snippet.
>
> ...
> <cfelse> <!--- REGULAR PAGE --->
>     <cfoutput>
>     <script language="JavaScript"
type="text/javascript">
>         if (typeof cr_track != 'undefined')
{cr_track(0);}
>     </script>
>     <!-- WSP END -->foo
>     </cfoutput>
> </cfif>
>
> The "foo" displays just fine and the
javascript is nowhere to be seen 
> in the page source.  We're running CS 4.6 sp2.
>
> --Jeff
>
>
>
_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
javascript in custom script
user name
2006-07-26 18:14:02
You could try:

<cfelse> <!--- REGULAR PAGE --->
         <cfinclude url="path_to_file.js">
         <cfoutput>
         <!-- WSP END -->foo
         </cfoutput>
</cfif>

RDB

At 01:40 PM 7/26/2006, you wrote:
>Here is a snippet.
>
>...
><cfelse> <!--- REGULAR PAGE --->
>         <cfoutput>
>         <script language="JavaScript"
type="text/javascript">
>                 if (typeof cr_track != 'undefined')
{cr_track(0);}
>         </script>
>         <!-- WSP END -->foo
>         </cfoutput>
></cfif>
>
>The "foo" displays just fine and the
javascript is nowhere to be seen in 
>the page source.  We're running CS 4.6 sp2.
>
>--Jeff
>
>
>On 7/26/2006 12:43 PM, R. David Betz wrote:
>>Is the javascript inside cfoutput tags?
>>RDB
>>At 12:30 PM 7/26/2006, you wrote:
>>
>>>I have a custom script element that contains a
conditional statement 
>>>with different sets of javascript.  The problem
is that it appears that 
>>>the element strips out anything within the
javascript tags.  I know the 
>>>script works and plain text gets displayed
correctly.  Is there a way 
>>>to  keep it from stripping out javascript?
>>>
>>>Any suggestions would be highly appreciated. 
Thanks!
>>>
>>>--Jeff
>>>
>>>
>>>_______________________________________________
>>>Commonspotchattyfig.figleaf.com
>>>To change your subscription options or search
the archive:
>>>http://chattyfig.figleaf.com/mailman/listinfo/commonspot

>>>
>>>Brought to you by Fig Leaf Software
>>>Premier Authorized Paperthin Consulting and
Training
>>>http://www.figleaf.com
>>>http://training.figleaf.c
om
>>
>>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>R. David Betz
>>Sr. Web Developer
>>RainCastle Communications
>>288 Walnut Street
>>Newton, MA 02460
>>Phone: 617.965.2681 x229
>>FAX: 617.527.1221
>>www.raincastle.com
>>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>
>>_______________________________________________
>>Commonspotchattyfig.figleaf.com
>>To change your subscription options or search the
archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/commonspot

>>Brought to you by Fig Leaf Software
>>Premier Authorized Paperthin Consulting and Training
>>http://www.figleaf.com
>>http://training.figleaf.c
om
>
>--
>________________________________________________________
________
>Jeff Langevin                                     Web
Programmer
>Appalachian Mountain Club          jlangevin at outdoors
dot org
>5 Joy Street, Boston, MA 02108                
617-523-0655 x302
>
>
>_______________________________________________
>Commonspotchattyfig.figleaf.com
>To change your subscription options or search the
archive:
>http://chattyfig.figleaf.com/mailman/listinfo/commonspot

>
>Brought to you by Fig Leaf Software
>Premier Authorized Paperthin Consulting and Training
>http://www.figleaf.com
>http://training.figleaf.c
om

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
R. David Betz
Sr. Web Developer
RainCastle Communications
288 Walnut Street
Newton, MA 02460
Phone: 617.965.2681 x229
FAX: 617.527.1221
www.raincastle.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
javascript in custom script
user name
2006-07-26 20:50:56
Hmmm... well, here's something interesting.  Is there a
limit to the 
number of custom script elements on a page.  On regular
content pages 
where the body is a textblock element the code is displaying
fine.  On 
the page I've been working on, the body is another custom
script element 
that runs fine.  The new custom script element is the last
thing in my 
template.  Is only one per page allowed?

--Jeff

On 7/26/2006 2:03 PM, Victor A. Cuya wrote:
> Hey Jeff,
> 
> I have seen some very weird behavior trying to
<cfoutput> Javascript 
> code. I have had better results using writeOuput
instead. Don't ask me 
> why. If you use Firefox, you can check the Javascript
debugger extension 
> to see if the code is being processed.
> 
> Victor
> 
> Jeff Langevin wrote:
> 
>> Here is a snippet.
>>
>> ...
>> <cfelse> <!--- REGULAR PAGE --->
>>     <cfoutput>
>>     <script language="JavaScript"
type="text/javascript">
>>         if (typeof cr_track != 'undefined')
{cr_track(0);}
>>     </script>
>>     <!-- WSP END -->foo
>>     </cfoutput>
>> </cfif>
>>
>> The "foo" displays just fine and the
javascript is nowhere to be seen 
>> in the page source.  We're running CS 4.6 sp2.
>>
>> --Jeff
>>
>>
>>
> 
>
------------------------------------------------------------
------------
> 
> _______________________________________________
> Commonspotchattyfig.figleaf.com
> To change your subscription options or search the
archive:
> http://chattyfig.figleaf.com/mailman/listinfo/commonspot

> 
> Brought to you by Fig Leaf Software
> Premier Authorized Paperthin Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.c
om

-- 
____________________________________________________________
____
Jeff Langevin                                     Web
Programmer
Appalachian Mountain Club          jlangevin at outdoors dot
org
5 Joy Street, Boston, MA 02108                 617-523-0655
x302


_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
Copying a meta-data form
user name
2006-07-26 21:01:13
Recently we copied a meta-data form that was bound to our
base template.
The meta-data form drives the layout of the site.  We used
the "copy
form" option from the admin interface to manage
meta-data forms.

In the subsequent 2 replications, we noticed that layouts
seem to be
wrong site-wide. In further analysis, it appeared that the
data for the
layout meta data form had been corrupted for nearly every
page.

The only way we were able to recover was to do a site wide
database
restore, unfortunately losing a good amount of authoring
work.

Has anyone else ever experienced problems copying a
meta-data form that
was already bound to a template,subsite,or category?

Ron Fuller
Web Manager, Mentor Graphics
www.mentor.com

_______________________________________________
Commonspotchattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/commonspot


Brought to you by Fig Leaf Software
Premier Authorized Paperthin Consulting and Training
http://www.figleaf.com
http://training.figleaf.c
om
[1-10]

about | contact  Other archives ( Real Estate discussion Medical topics )