Creating a custom EditorPart in SharePoint - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:48:14Z http://stackoverflow.com/feeds/question/1017582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1017582/creating-a-custom-editorpart-in-sharepoint 0 Creating a custom EditorPart in SharePoint F5ToDebug 2009-06-19T12:02:53Z 2009-06-22T12:58:03Z <p>I have used the following article as a guide to creating a custom EditorPart in SharePoint</p> <p><a href="http://blah.winsmarts.com/2006/05/19/writing-custom-editors-for-sharepoint-2007-and-aspnet-20-webparts.aspx" rel="nofollow">http://blah.winsmarts.com/2006/05/19/writing-custom-editors-for-sharepoint-2007-and-aspnet-20-webparts.aspx</a> </p> <p>However when I implement this technique I cannot save the changes to my custom properties. Basically the CreateChildControls function is called when the 'Apply' or 'Save' buttons are used and this creates a new instance of my internal control variable, thus wiping any changes the user has made.</p> <p>So when the ApplyChanges function is called all the controls are back to the default settings.</p> <p>Does anyone have any advice on this?</p> <p>Thanks</p> <h2>UPDATE</h2> <p>I am just not able to wrap my head around this at all. However I look at this I get stuck at the same point, how can I save anything back to my web part in ApplyChanges() when CreateChildCOntrols() is always run first thus replacing my CheckBoxList with a new instance and therefore no selected items. I have included the full code below in the hope that I am being a total dunce and the solution is obvious.</p> <pre><code>Private Class CaseMatterInfoEditorPart Inherits EditorPart Protected WithEvents _propList As CheckBoxList Protected Overrides Sub CreateChildControls() _propList = New CheckBoxList _propList.EnableViewState = True _propList.AutoPostBack = True _propList.Width = New Unit("100%") LoadProperties() Me.Controls.Add(New LiteralControl("Please select the data items you wish to include:&lt;br /&gt;")) Me.Controls.Add(_propList) End Sub Public Overrides Function ApplyChanges() As Boolean Dim part As CaseMatterInfoPart = CType(WebPartToEdit, _ CaseMatterInfoPart) If part IsNot Nothing Then GetSelectedDataValues() Else Return False End If Return True End Function Public Overrides Sub SyncChanges() EnsureChildControls() Dim part As CaseMatterInfoPart = CType(WebPartToEdit, _ CaseMatterInfoPart) If part IsNot Nothing Then If Not String.IsNullOrEmpty(part.DataValues) Then SetSelectedValues(part.DataValues) End If End If End Sub Private Function GetSelectedDataValues() As String Dim strReturn As String = "" For Each item As ListItem In _propList.Items If item.Selected Then strReturn &amp;= item.Text &amp; "|" End If Next If Not String.IsNullOrEmpty(strReturn) Then strReturn = strReturn.Remove(strReturn.Length - 1, 1) End If Return strReturn End Function Private Sub SetSelectedValues(ByVal Values As String) If Not String.IsNullOrEmpty(Values) And _ _propList IsNot Nothing Then _propList.ClearSelection() Dim split() As String = Values.Split("|") For Each strValue As String In split For Each item As ListItem In _propList.Items If item.Text = strValue Then item.Selected = True End If Next Next End If End Sub Private Sub LoadProperties() Dim file As New File Dim lstProperties As List(Of String) = GetStringPropertyNames(file.GetType) For Each strProperty As String In lstProperties _propList.Items.Add(strProperty) Next End Sub Private Function GetStringPropertyNames(ByVal Type As System.Type) As List(Of String) Dim props() As PropertyInfo = Type.GetProperties Dim propList As New List(Of String) For Each prop As PropertyInfo In props If prop.Name &lt;&gt; "Chronology" And _ prop.Name &lt;&gt; "Documents" And _ prop.Name &lt;&gt; "Milestones" And _ prop.Name &lt;&gt; "DiaryEntries" And _ prop.Name &lt;&gt; "FileLoadSuccesful" And _ prop.Name &lt;&gt; "FileLoadError" Then Dim boo As Boolean = False Dim bootype As Type = boo.GetType Dim dec As Decimal Dim decType As Type = dec.GetType If prop.PropertyType Is "".GetType Or _ prop.PropertyType Is Now.GetType Or _ prop.PropertyType Is bootype Or _ prop.PropertyType Is decType Then propList.Add(prop.Name) Else Dim listChildPropertyStrings As List(Of String) = GetStringPropertyNames(prop.PropertyType) For Each strProp As String In listChildPropertyStrings propList.Add(prop.Name &amp; ": " &amp; strProp) Next End If End If Next Return propList End Function End Class </code></pre> <p>Hope someone out there can see what I cannot.</p> <p>Thanks</p> http://stackoverflow.com/questions/1017582/creating-a-custom-editorpart-in-sharepoint/1017783#1017783 0 Answer by ArjanP for Creating a custom EditorPart in SharePoint ArjanP 2009-06-19T12:46:23Z 2009-06-19T12:46:23Z <p>I usually start my EditorPart with the code in this article: <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webparts.editorpart.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webparts.editorpart.aspx</a> never had any such problems.</p> <p>Sounds like you have a problem with the control flow in ASP.NET but without code it is hard to see what it is.</p> http://stackoverflow.com/questions/1017582/creating-a-custom-editorpart-in-sharepoint/1017923#1017923 0 Answer by Tudor Olariu for Creating a custom EditorPart in SharePoint Tudor Olariu 2009-06-19T13:20:03Z 2009-06-19T13:20:03Z <p>The <strong>ApplyChanges</strong>() method is used to take the contents of the custom editor and apply them to the webpart, while the <strong>SyncChanges</strong>() method does the opposite, it takes the previously stored properties in the webpart and updates the editor accordingly. It is your responsibility to write the logic for both of them when creating a custom editor.</p> http://stackoverflow.com/questions/1017582/creating-a-custom-editorpart-in-sharepoint/1027077#1027077 0 Answer by F5ToDebug for Creating a custom EditorPart in SharePoint F5ToDebug 2009-06-22T12:58:03Z 2009-06-22T12:58:03Z <p>It would help if I had actually saved the string returned from GetSelectedDataValues() into a property on the web part...</p> <p>Actual code should look like this:</p> <pre><code>Public Overrides Function ApplyChanges() As Boolean Dim part As CaseMatterInfoPart = CType(WebPartToEdit, CaseMatterInfoPart) If part IsNot Nothing Then part.DataValues = GetSelectedDataValues() Else Return False End If Return True End Function </code></pre> <p>It so often pays to check, double check and triple check what you are doing. I had serioulsy over complicated this issue looking for an answer that was staring me in the face.</p>