or
'Do not workPublic class XYZ Public Property Status as StatusEnumEnd ClassPublic Enum StatusEnum as Integer Enabled = 0 Disabled = 1End Enum'WorkPublic class XYZ Public Property Status as IntegerEnd ClassWe are using SPRadEditor with Telerik.Web.UI version 2013.1.417.35. The Rad editor is declare using the below statement
<telerik:SPRadEditor ID="rtxtDetail" runat="server" Skin="Office2007" Width="100%" ToolbarMode="Default" ContentFilters="None" StripFormattingOptions="NoneSupressCleanMessage">
But the Toolbar is not getting fixed to the top of the control. Could you please help to provide a fix for this issue?
Thank you

<Telerik:GridDropDownColumn HeaderText="Acceptance" UniqueName="AcceptanceStatus" DataSourceID="odsAcceptanceStatusTypes" ListValueField="ID" ListTextField="Name" ItemStyle-Wrap="false" DropDownControlType="DropDownList" /><asp:ObjectDataSource ID="odsAcceptanceStatusTypes" TypeName="MyUtilities.WellTest" SelectMethod="GetAcceptanceStatusTypes" runat="server" />protected void gridItems_UpdateCommand(object source, GridCommandEventArgs e){ GridEditableItem editableItem = e.Item as GridEditableItem; //get our primary ID from the grid's datasource int resultNo = (int)(editableItem.OwnerTableView.DataKeyValues[editableItem.ItemIndex]["Result_No"]); //get the new values from this edited row Hashtable newValues = new Hashtable(); e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editableItem); int acceptanceStatusTypeID = -1; foreach (DictionaryEntry entry in newValues) { switch ((string)entry.Key) { // (other items removed from code) //get the value for this case "": acceptanceStatusTypeID = Int32.Parse((string)entry.Value); break; } }}<telerik:PivotGridRowField DataField="ITEMNAME" Caption="Ürün Adı" UniqueName="ITEMNAME" ZoneIndex="4" SortExpression="ItemId"></telerik:PivotGridRowField><SortExpressions> <telerik:PivotGridSortExpression FieldName="ItemId" SortOrder="Ascending" /></SortExpressions>