﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Tue, 23 Feb 2010 20:57:26 GMT</pubDate><dc:creator>andi@intersoftpt.com</dc:creator><description>&lt;p style="margin-top: 7.5pt; margin-right: 0in; margin-bottom: 7.5pt; margin-left: 0in; "&gt;&lt;span style="font-family: 'lucida sans unicode', sans-serif; color: black; font-size: 9pt; "&gt;&lt;span style="font-size: 9pt; "&gt;Hi Conrad,&lt;o:p /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin-top: 7.5pt; margin-right: 0in; margin-bottom: 7.5pt; margin-left: 0in; "&gt;&lt;span style="font-family: 'lucida sans unicode', sans-serif; color: black; font-size: 9pt; "&gt;&lt;span style="font-size: 9pt; "&gt;     Glad to hear that the issue is solved. Apologies
for not notifying you earlier. Thank you and have a nice day.&lt;o:p /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 7.5pt; margin-right: 0in; margin-bottom: 7.5pt; margin-left: 0in; "&gt;&lt;span style="font-family: 'lucida sans unicode', sans-serif; color: black; font-size: 9pt; "&gt;&lt;span style="font-size: 9pt; "&gt;Best Regards,&lt;o:p /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 7.5pt; margin-right: 0in; margin-bottom: 7.5pt; margin-left: 0in; "&gt;&lt;span style="font-family: 'lucida sans unicode', sans-serif; color: black; font-size: 9pt; "&gt;&lt;span style="font-size: 9pt; "&gt;Andi Santoso&lt;o:p /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&lt;span style="font-size: 9pt; "&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Tue, 23 Feb 2010 11:53:21 GMT</pubDate><dc:creator>hohenbergerc</dc:creator><description>&lt;p&gt;Andi,&lt;/p&gt;
&lt;p&gt;Apparently this issue has been resolved in version 7.0.7200.305 with a LayoutSettings parameter PersistValueListOnCopy.  It works exactly the way I would expect.&lt;/p&gt;
&lt;p&gt;I am disappointed that I received no notification from my feature request and stumbled on this accidentally.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Conrad&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Mon, 11 Jan 2010 21:37:26 GMT</pubDate><dc:creator>andi@intersoftpt.com</dc:creator><description>&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Hi Conrad,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;Unfortunately&amp;nbsp;we do not have a sample to create a new customize row context menu, but here is the sinppet that might helpful for you. You will need a client side event called "OnRowContextMenu" to trigger and add the new RowContextMenu.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;font class="Apple-style-span" style="font-size: 15px; "&gt;&lt;span style="font-size: 12px; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;	function WebGrid1_OnRowContextMenu(controlId, rowType, rowElement, menuObject)
	{
            var WebGrid1 = ISGetObject(controlId); 
						
            var New_Function = new WebMenuItem();							                      
            New_Function.Text = "&amp;lt;asp:Literal runat="server" Text="New Function" /&amp;gt;";
            New_Function.Name = "New_Function";
            New_Function.OnClick = "New_Function_";
            New_Function.CustomElement = controlId;                                
           
            menuObject.Items.Add(New_Function); 
                       
            return true;
	}		
		
	function New_Function_(){
		
	    alert("New Function has been called");
		
	}&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;  &lt;span style="font-size: 9pt; "&gt; &amp;nbsp; I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Best Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Andi Santoso&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Mon, 11 Jan 2010 21:37:24 GMT</pubDate><dc:creator>andi@intersoftpt.com</dc:creator><description>&lt;p&gt;&lt;font class="Apple-style-span" style="font-size: 15px; "&gt;&lt;span style="font-size: 12px; "&gt;** Double Post&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Mon, 11 Jan 2010 08:02:18 GMT</pubDate><dc:creator>hohenbergerc</dc:creator><description>&lt;p&gt;Andi,&lt;/p&gt;
&lt;p&gt;I apologize.  I was in the wrong section as you pointed out.  I have made the feature request per your suggestion.&lt;/p&gt;
&lt;p&gt;Is there samples of code showing a custom context menu so that I may attempt a work-around?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks again,&lt;/p&gt;
&lt;p&gt;Conrad&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Sun, 10 Jan 2010 21:36:00 GMT</pubDate><dc:creator>andi@intersoftpt.com</dc:creator><description>&lt;p /&gt;&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Hi Conrad &amp;amp; Jocelyn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Yes, for some part in Developer Network is set to be Read-Only for some purpose. However, for the Feature Request, it should be still working. Perhaps, you had choose the wrong path. To be precisely, I attached you a screenshot to guide you on how to ask for feature request in Developer Network.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;I hope it helps and please, do not hesitate to ask if you have any other questions, thank you.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Best Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Andi Santoso&lt;/span&gt;&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Fri, 08 Jan 2010 14:33:18 GMT</pubDate><dc:creator>jcrendulic</dc:creator><description>&lt;p&gt;I have this same problem.  I need to know how to request this feature as well.  It is very important for us.&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Fri, 08 Jan 2010 07:59:20 GMT</pubDate><dc:creator>hohenbergerc</dc:creator><description>&lt;p&gt;Andi,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Apparently, you misunderstood me.  Developer Network is no longer usable.  The message when you try to post states that it doesn't allow new posts and all new posts be done here.  Is there a Feature Request forum here that I can't find?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Conrad&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Thu, 07 Jan 2010 20:40:36 GMT</pubDate><dc:creator>andi@intersoftpt.com</dc:creator><description>&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;Hi Conrad,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; "&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;Forgiveness for the mistaken, You can request for new feature at&lt;b&gt; Developer Network -&amp;gt; CommunityCenter -&amp;gt; Product Feedback -&amp;gt; Feature Request&lt;/b&gt;. I hope it helps and please, do not hesitate to ask if you have any other questions, thank you.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;font class="Apple-style-span" style="font-size: 15px; "&gt;&lt;span style="font-size: 12px; "&gt;Best Regards,&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font class="Apple-style-span" style="font-size: 15px; "&gt;&lt;span style="font-size: 12px; "&gt;Andi Santoso&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Thu, 07 Jan 2010 14:18:45 GMT</pubDate><dc:creator>hohenbergerc</dc:creator><description>&lt;p&gt;Andi,&lt;/p&gt;
&lt;p&gt;Developer Network is Read-only and does not allow new posts.  Where should I post a feature request?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Conrad&lt;/p&gt;</description></item><item><title>Copy and Paste in a WebGrid with a DropDownList EditType</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-and-Paste-in-a-WebGrid-with-a-DropDownList-EditType/</link><pubDate>Wed, 06 Jan 2010 14:36:50 GMT</pubDate><dc:creator>hohenbergerc</dc:creator><description>&lt;p&gt;In my WebGrid, I have a column defined as a DropDownList.  It retrieves rows from a table that has an ID and a description.  I display the description, but store the ID.  When I copy and paste a row, it tries to store the description and not the ID.  Is there a trick to this?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Conrad&lt;/p&gt;</description></item></channel></rss>