Categories > TinyButStrong general >

Problem with text-area to repeat each record values in different textarea if more than one records i...

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: leeladharan
Date: 2005-05-13
Time: 16:20

Problem with text-area to repeat each record values in different textarea if more than one records is present

Hi , I have merged => ('blk',$array) where array contents are:
array[1] = "hjshdjfhsdjkfhskdjfhsjkdfhjksdfhk";
array[2]= "shsghdgsjfdjhfgshdgfhsdgfhg";
array[3]="gdfgdfg";....continued like this

I want to have each value to be displayed in different text area. My code is as below
<tr>
   <td><textarea cols = "20" rows = "5" value = "[blk.val;block = tr]"></td>
</tr>

But this does not works? Pls reply soon.
By: Skrol29
Date: 2005-05-15
Time: 23:04

Re: Problem with text-area to repeat each record values in different textarea if more than one records is present

Hi Leeladharan,

What you've done is ok for TBS, but it is not Html compliant.
That's probably why what you get is not what expexted.

Your code should be like this:
<tr>
  <td><textarea cols="20" rows="5">[blk.val;block=tr]</textarea></td>
</tr>