You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "K Sharad Bhushan (JIRA)" <ji...@apache.org> on 2007/05/21 10:09:16 UTC

[jira] Created: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Content Updation - with textarea,freemarker objects problem ..
--------------------------------------------------------------

                 Key: OFBIZ-1002
                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
             Project: OFBiz (The Open for Business Project)
          Issue Type: Improvement
          Components: content
            Reporter: K Sharad Bhushan
            Priority: Minor


Hi,


We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.

Posting it here so that the changes are used(in case) as we found it to be genric to all.

1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .

2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not sowing them up when we try to update.

So we Just changes the form i.e
 <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
 <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>

the ftl now look like this 


<#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>

<form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
        <!--auto-fields-service service-name="updateElectronicText"/-->
    <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
    <table border="0" cellpadding="2" cellspacing="0">
	<tr>
		<td width="20%" align="right">
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">	
			<span class="buttontext">${parameters.dataResourceId}</span>
		</td>
	</tr>
	<tr>
		<td width="20%" align="right">
			<span class="tableheadtext">Text</span>
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">
            	<textarea name="textData" cols="120" rows="24">
            		${eText.textData?html}
           	 </textarea>
        </td>
	</tr>
	<tr>
		<td width="20%" align="right">&nbsp;</td>
		<td>&nbsp;</td>
		<td width="80%" align="left" colspan="4">
			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
		</td>
	</tr>
</table>
</form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "Jacopo Cappellato (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacopo Cappellato reassigned OFBIZ-1002:
----------------------------------------

    Assignee: Jacopo Cappellato

> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>         Assigned To: Jacopo Cappellato
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "K Sharad Bhushan (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

K Sharad Bhushan updated OFBIZ-1002:
------------------------------------

    Description: 
Hi,


We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.

Posting it here so that the changes are used(in case) as we found it to be genric to all.

1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .

2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.

So we Just changed the form i.e
 <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
 <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>

the ftl now look like this 


<#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>

<form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
        <!--auto-fields-service service-name="updateElectronicText"/-->
    <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
    <table border="0" cellpadding="2" cellspacing="0">
	<tr>
		<td width="20%" align="right">
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">	
			<span class="buttontext">${parameters.dataResourceId}</span>
		</td>
	</tr>
	<tr>
		<td width="20%" align="right">
			<span class="tableheadtext">Text</span>
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">
            	<textarea name="textData" cols="120" rows="24">
            		${eText.textData?html}
           	 </textarea>
        </td>
	</tr>
	<tr>
		<td width="20%" align="right">&nbsp;</td>
		<td>&nbsp;</td>
		<td width="80%" align="left" colspan="4">
			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
		</td>
	</tr>
</table>
</form>

  was:
Hi,


We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.

Posting it here so that the changes are used(in case) as we found it to be genric to all.

1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .

2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.

So we Just changed the form i.e
 <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
 <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>

the ftl now look like this 


<#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>

<form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
        <!--auto-fields-service service-name="updateElectronicText"/-->
    <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
    <table border="0" cellpadding="2" cellspacing="0">
	<tr>
		<td width="20%" align="right">
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">	
			<span class="buttontext">${parameters.dataResourceId}</span>
		</td>
	</tr>
	<tr>
		<td width="20%" align="right">
			<span class="tableheadtext">Text</span>
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">
            	<textarea name="textData" cols="120" rows="24">
            		${eText.textData?html}
           	 </textarea>
        </td>
	</tr>
	<tr>
		<td width="20%" align="right">&nbsp;</td>
		<td>&nbsp;</td>
		<td width="80%" align="left" colspan="4">
			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
		</td>
	</tr>
</table>
</form>


> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "Jacopo Cappellato (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12497375 ] 

Jacopo Cappellato commented on OFBIZ-1002:
------------------------------------------

Hi,

could you please try the attached patch instead? It should fix the problem without the need to change the form.

Jacopo


> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "David E. Jones (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12497735 ] 

David E. Jones commented on OFBIZ-1002:
---------------------------------------

It looks like the second problem is specific to your code. If that is the case and #1 is working we should close this issue and you can ask your question about how to get that working on the user mailing list.

> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "K Sharad Bhushan (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

K Sharad Bhushan updated OFBIZ-1002:
------------------------------------

    Description: 
Hi,


We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.

Posting it here so that the changes are used(in case) as we found it to be genric to all.

1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .

2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.

So we Just changed the form i.e
 <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
 <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>

the ftl now look like this 


<#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>

<form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
        <!--auto-fields-service service-name="updateElectronicText"/-->
    <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
    <table border="0" cellpadding="2" cellspacing="0">
	<tr>
		<td width="20%" align="right">
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">	
			<span class="buttontext">${parameters.dataResourceId}</span>
		</td>
	</tr>
	<tr>
		<td width="20%" align="right">
			<span class="tableheadtext">Text</span>
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">
            	<textarea name="textData" cols="120" rows="24">
            		${eText.textData?html}
           	 </textarea>
        </td>
	</tr>
	<tr>
		<td width="20%" align="right">&nbsp;</td>
		<td>&nbsp;</td>
		<td width="80%" align="left" colspan="4">
			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
		</td>
	</tr>
</table>
</form>

  was:
Hi,


We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.

Posting it here so that the changes are used(in case) as we found it to be genric to all.

1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .

2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not sowing them up when we try to update.

So we Just changes the form i.e
 <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
 <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>

the ftl now look like this 


<#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>

<form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
        <!--auto-fields-service service-name="updateElectronicText"/-->
    <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
    <table border="0" cellpadding="2" cellspacing="0">
	<tr>
		<td width="20%" align="right">
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">	
			<span class="buttontext">${parameters.dataResourceId}</span>
		</td>
	</tr>
	<tr>
		<td width="20%" align="right">
			<span class="tableheadtext">Text</span>
		</td>
		<td>&nbsp;</td>
		<td width="80%" align="left">
            	<textarea name="textData" cols="120" rows="24">
            		${eText.textData?html}
           	 </textarea>
        </td>
	</tr>
	<tr>
		<td width="20%" align="right">&nbsp;</td>
		<td>&nbsp;</td>
		<td width="80%" align="left" colspan="4">
			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
		</td>
	</tr>
</table>
</form>


> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "Jacopo Cappellato (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacopo Cappellato updated OFBIZ-1002:
-------------------------------------

    Attachment: formwidget.patch

> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditDataResourceUpload" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "Jacopo Cappellato (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12497394 ] 

Jacopo Cappellato commented on OFBIZ-1002:
------------------------------------------

Thanks for your comments.
To all, is it ok if I commit the attached patch (to fix at least #1)?
Any ideas for issue #2?


> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "Jacopo Cappellato (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacopo Cappellato closed OFBIZ-1002.
------------------------------------

    Resolution: Fixed

I've committed in rev. 540456 the attached patch.
For #2, as suggested by David, please continue the discussion in the mailing list.


> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>         Assigned To: Jacopo Cappellato
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "Jacques Le Roux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12497733 ] 

Jacques Le Roux commented on OFBIZ-1002:
----------------------------------------

Jacopo,

For my part I can see any problems in this patch if it fix the 1st issue (did not test).

> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-1002) Content Updation - with textarea,freemarker objects problem ..

Posted by "K Sharad Bhushan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-1002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12497383 ] 

K Sharad Bhushan commented on OFBIZ-1002:
-----------------------------------------

Hi,

Thank's for the response.The patch only solves the first problem i described.But the second one it does not.

FlexibleStringExpander.java was parsing the freemarker objects where the second problems occur's.


Regards
Sharad






> Content Updation - with textarea,freemarker objects problem ..
> --------------------------------------------------------------
>
>                 Key: OFBIZ-1002
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1002
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: content
>            Reporter: K Sharad Bhushan
>            Priority: Minor
>         Attachments: formwidget.patch
>
>
> Hi,
> We are using ofbiz for developing our ecommerce websites.We found a problem with Content creation part.
> Let me tell the problem.The problem is related to backend Content and DataResource creation part.Not with view.
> Posting it here so that the changes are used(in case) as we found it to be genric to all.
> 1.Content has a data resource where we can write our text. if we include <textarea></textarea> within the text area provided under text tab of DataResource and later when we try to update the content it was not showing up as we put the content. <textarea></textarea> the end tag of text area was closing the start tag and the content that follows after the textarea was getting rendered as html instead of going into the textarea .
> 2.If we try to inlude freemarker template object(i mean ${catalog} , something like this) in textarea provided then because of the FORMS.XML(i mean any forms.xml) parser code it was trying to interpret freemarker objects as context ojbects and was not showing them up when we try to update or clik on text in DataResource tab.
> So we Just changed the form i.e
>  <include-form name="EditElectronicText" location="component://content/webapp/content/data/DataResourceForms.xml"/> in DataResourceScreens.xml to a ftl i.e
>  <platform-specific><html><html-template location="component://content/webapp/content/data/EditDataResourceTexts.ftl"/></html></platform-specific>
> the ftl now look like this 
> <#assign eText=delegator.findByPrimaryKey("ElectronicText",Static["org.ofbiz.base.util.UtilMisc"].toMap("dataResourceId",parameters.dataResourceId))>
> <form method="post"  action="/content/control/updateElectronicText"  name="EditElectronicText" style="margin: 0;">
>         <!--auto-fields-service service-name="updateElectronicText"/-->
>     <input type="hidden" name="dataResourceId" class="buttontext" value="${parameters.dataResourceId}"/>
>     <table border="0" cellpadding="2" cellspacing="0">
> 	<tr>
> 		<td width="20%" align="right">
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">	
> 			<span class="buttontext">${parameters.dataResourceId}</span>
> 		</td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">
> 			<span class="tableheadtext">Text</span>
> 		</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left">
>             	<textarea name="textData" cols="120" rows="24">
>             		${eText.textData?html}
>            	 </textarea>
>         </td>
> 	</tr>
> 	<tr>
> 		<td width="20%" align="right">&nbsp;</td>
> 		<td>&nbsp;</td>
> 		<td width="80%" align="left" colspan="4">
> 			<input type="submit" class="smallSubmit" name="submitButton" value="${uiLabelMap.CommonUpdate}" onClick="javascript: return submitFormDisableButton(this)" />
> 		</td>
> 	</tr>
> </table>
> </form>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.