<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Editing text doesn&#039;t work no more</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Editing text doesn&#039;t work no more]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 04:28:25 +0000</pubDate>
  <lastBuildDate>Mon, 22 Mar 2010 18:30:47 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=16330</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Okay, it must have a brain cramp...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57732&amp;title=editing-text-doesnt-work-no-more#57732</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 22 March 2010 at 6:30pm<br /><br />Okay, it must have a brain cramp on my part - apparently I uncommented some debugging code in the RequestEdit event that was canceling the edit. Sorry for wasting your time.]]>
   </description>
   <pubDate>Mon, 22 Mar 2010 18:30:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57732&amp;title=editing-text-doesnt-work-no-more#57732</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Hi Jason,  Your sample works...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57730&amp;title=editing-text-doesnt-work-no-more#57730</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 22 March 2010 at 5:55pm<br /><br />Hi Jason,<DIV>&nbsp;</DIV><DIV>Your sample works OK. Can you upload a testproject with the problem?</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 22 Mar 2010 17:55:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57730&amp;title=editing-text-doesnt-work-no-more#57730</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : I&amp;#039;m using 13.3.1, and an...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57721&amp;title=editing-text-doesnt-work-no-more#57721</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 22 March 2010 at 3:39pm<br /><br />I'm using 13.3.1, and an old project that has a ReportControl that used&nbsp; to be editable, is no longer editable. Here's my Init code:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>With Me.ReportControl1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(col_Actions, "Actions", 50, False)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Editable = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(col_HostName, "Host Name/IP Address", 150, True)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Alignment = xtpAlignmentVCenter + xtpAlignmentLeft<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Editable = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .EditOptions<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MaxLength = 255<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SelectTextOnEdit = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EditControlStyle = xtpEditStyleLowerCase<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(col_HostPort, "Port", 75, False)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Alignment = xtpAlignmentRight + xtpAlignmentVCenter<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Editable = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .EditOptions<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MaxLength = 5<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SelectTextOnEdit = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EditControlStyle = xtpEditStyleNumber<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With .Columns.Add(col_LastConnected, "Last Connected", 200, False)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Alignment = xtpAlignmentLeft + xtpAlignmentVCenter<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Editable = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AllowEdit = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .HeaderRowsAllowEdit = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EditOnClick = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowHeader = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowHeaderRows = True<br>End With<br></pre></td></tr></table><br><br>What do I need to do to get editing back for certain columns?<br>]]>
   </description>
   <pubDate>Mon, 22 Mar 2010 15:39:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57721&amp;title=editing-text-doesnt-work-no-more#57721</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : 13.3.1 is now out to fix this. ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57383&amp;title=editing-text-doesnt-work-no-more#57383</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 04 March 2010 at 5:18pm<br /><br />13.3.1 is now out to fix this.]]>
   </description>
   <pubDate>Thu, 04 Mar 2010 17:18:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57383&amp;title=editing-text-doesnt-work-no-more#57383</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Hi,13.3.1 is building right now...should...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57324&amp;title=editing-text-doesnt-work-no-more#57324</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 03 March 2010 at 9:01am<br /><br />Hi,<br>13.3.1 is building right now...should be tonight\tomorrow morning.<br>]]>
   </description>
   <pubDate>Wed, 03 Mar 2010 09:01:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57324&amp;title=editing-text-doesnt-work-no-more#57324</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Please post message if a corrected...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57311&amp;title=editing-text-doesnt-work-no-more#57311</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=841">Fabian</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 03 March 2010 at 1:59am<br /><br />Please post message if a corrected OCX is avalable.<DIV>&nbsp;</DIV><DIV>Thanks</DIV>]]>
   </description>
   <pubDate>Wed, 03 Mar 2010 01:59:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57311&amp;title=editing-text-doesnt-work-no-more#57311</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Sorry SuperMario,  I jumped...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57276&amp;title=editing-text-doesnt-work-no-more#57276</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=841">Fabian</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 02 March 2010 at 11:18am<br /><br />Sorry SuperMario,<DIV>&nbsp;</DIV><DIV>I jumped back to 12.2.1 because it helps me not too much if I have fixed some bugs and see some new ones. This is&nbsp;an endless workaround scenario that cost too much time for me!</DIV>]]>
   </description>
   <pubDate>Tue, 02 Mar 2010 11:18:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57276&amp;title=editing-text-doesnt-work-no-more#57276</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Set CanEditCheckboxItem = True...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57275&amp;title=editing-text-doesnt-work-no-more#57275</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 02 March 2010 at 10:48am<br /><br />Set CanEditCheckboxItem = True for the items<img src="http://forum.codejock.com/smileys/smiley6.gif" border="0" align="absmiddle">&nbsp; Will fix for next release.]]>
   </description>
   <pubDate>Tue, 02 Mar 2010 10:48:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57275&amp;title=editing-text-doesnt-work-no-more#57275</guid>
  </item> 
  <item>
   <title><![CDATA[Editing text doesn&#039;t work no more : Hi,  Using CJ V13.3.0, VB6/SP6,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57271&amp;title=editing-text-doesnt-work-no-more#57271</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=841">Fabian</a><br /><strong>Subject:</strong> 16330<br /><strong>Posted:</strong> 02 March 2010 at 9:50am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Using CJ V13.3.0, VB6/SP6, Win7.</DIV><DIV>&nbsp;</DIV><DIV>Since I updated to 13.3 editing a cell of a RC doesn't work anymore.&nbsp;I set:</DIV><DIV>&nbsp;</DIV><DIV>RC.AllowEdit=True</DIV><DIV>&nbsp;</DIV><DIV>and after creating the cell...</DIV><DIV>&nbsp;</DIV><DIV>Item.CreateEditOption</DIV><DIV>Item.EditOptions.AllowEdit=True</DIV><DIV>item.EditOptions.MaxLength=60</DIV><DIV>&nbsp;</DIV><DIV>the cell is NOT editable???</DIV><DIV>&nbsp;</DIV><DIV>What do I wrong?</DIV>]]>
   </description>
   <pubDate>Tue, 02 Mar 2010 09:50:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16330&amp;PID=57271&amp;title=editing-text-doesnt-work-no-more#57271</guid>
  </item> 
 </channel>
</rss>