-
13 Nov 2012 2:32 PM #1
HTMLEditor producing textarea HML element with empty name
HTMLEditor producing textarea HML element with empty name
When HTMLEditor is rendered to a div the generated textarea input has empty name attribute
See attachment for generated HTML codeCode:<%@page language="java" contentType="text/html; charset=utf-8" %><% String displayName = request.getParameter("displayName"); if (null == displayName){ displayName = ""; } %> <html> <head> <title>Test HTMLEditor</title> <link type="text/css" rel="stylesheet" href="../ext-4.1.3/resources/css/ext-all.css" /> <script type="text/javascript" src="../ext-4.1.3/ext-all-debug.js"></script> <script type="text/javascript"> function doSubmit() { brandingForm.submit(); } var myEditor; Ext.onReady(function() { myEditor = Ext.create("Ext.panel.Panel", { height: 100, width: 552, renderTo: 'richtext', items:[{ xtype: 'htmleditor', name: 'displayName', itemId: 'displayName', fontFamilies: ['Arial', 'Arial Black', 'Comic Sans MS', 'Courier New', 'Lucida Console', 'Tahoma', 'Times new Roman', 'Trebuchet MS', 'Verdana'], height: 100, width: 550, border: 0, value: '<%=displayName%>' }] }); myEditor.down('#displayName').focus(); myEditor.show(); }); </script> </head> <body style="margin: 0 0 0 0;"> <form name="form1" id="brandingForm" action="testHTMLEditor.jsp" method="post"> <div id="richtext"> </div> <div style="width: 100%;"> <input type="button" value="Save" onClick="doSubmit();"> </div> </form> </body> </html>
-
13 Nov 2012 4:25 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,121
- Vote Rating
- 453
Thanks for the report.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJSIV-7746
in
4.2.0 Sprint 2.


Reply With Quote