<property name="Language">de-DE</property><BR>
Hi,
For many grids in our project, there are around 40 columns, so we were trying to use the gridpersister to save the settings for individual user, so that the user can customize the number of columns they want to see everytime.
Saving and loading grid setting works fine. The problem is when the user tries to hide thie column from the header contextmenu, the arrangement of the columns are lost. I have used wrap="false" for Column header and Item properties in the gid. After hiding 1 or 2 column, most of the headers and coluns are wrapped.
The problem is very prominent in IE7, almost all the columns and all the row data are wrapped. I am using the following code for columns. I cannot use fixed width header as my coulmn values vary from 40 to 400 characters and I don't want white space in the column.
<HeaderStyle VerticalAlign="Bottom" HorizontalAlign="Left" /><ItemStyle Wrap="False" VerticalAlign="Top" HorizontalAlign="Left"/>var
oValue = Editor.get_html(true).trim(); ----(a)
-In this case oValue.length is showing the result which is a count of text entered by user as well as the html tags included.
also i have tried var oValue = Editor.get_text(true).trim(); ----(b)
-In this case we are getting the plain text count text count
eg: if i enter: B
b
(text is bolded just to distinguish)I shud get count = 3 as we get in MS word if we check. but from (a) and (b) we get diffrent result. This is creating trouble with our QA as we are not getting things approved due to this :(. Can anybody help me on this.
Thanks.

Hi,
I have a RadGrid which has NestedHierarchy set up. I also have edit functionality associated to grid rows.
<Columns>
<telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn" EditText="Rename Favourite" HeaderStyle-Width="15px">
<ItemStyle CssClass="edit-grid-controls" />
</telerik:GridEditCommandColumn>
<telerik:GridTemplateColumn HeaderText="Name" UniqueName="Name">
<ItemTemplate> <%# Eval("Name") %> </ItemTemplate>
<EditItemTemplate><asp:TextBox ID="txtFavouriteName" runat="server" Text='<%# Eval("Name") %>' Width="100%" MaxLength="256" />
</EditItemTemplate>
</telerik:GridTemplateColumn>
... more columns ...
</Columns>
1. Since the time this grid was converted to a nested self referencing hierarchy table, the Name is displayed twice!
2. If I remove UniqueName attribute, the data wont show up.
3. If I remove ItemTemplate, things are fine until I attempt for an edit thru "GridEditCommandColumn".
4. Please have a look at the attached images. Image ending with right is for "normal" radgrid. Image ending with "wrong" is for nested hierarchy grid. When in edit mode, I don't want to display values twice.
Protected Sub RadScheduler1_AppointmentInsert(sender As Object, e As Telerik.Web.UI.AppointmentInsertEventArgs) Handles RadScheduler1.AppointmentInsert RadWindowManager1.RadConfirm("Server radconfirm: Are you sure?", "confirmCallBackFn", 330, 100, Nothing, "Server RadConfirm", Nothing) End Sub<script type="text/javascript"> function schedulerFormCreated() { $telerik.$(".rsRecurrenceOptionList li:eq(4)").hide(); } function confirmCallBackFn(arg) { return arg; } function OnClientAppointmentInserting(sender, eventArgs) { if(confirmCallBackFn()) { eventArgs.set_cancel(false); } else { eventArgs.set_cancel(true); } } </script>

var txtTypeSelected = window["<%=txtOffsetPeriod2.ClientID %>"];alert(txtTypeSelected.value);txtTypeSelected.value = 1;<telerik:RadChart ID="RadChart1" runat="server" DefaultType="Line" />SqlDataSource sqlDataSource = new SqlDataSource();sqlDataSource.ID = "myDataSource";sqlDataSource.ConnectionString = "<snip>";sqlDataSource.SelectCommand = "select convert(varchar(10),SearchDate,101) as SearchDate, AverageSoldPrice from SearchResult where SearchId = 1 order by SearchDate";this.Page.Controls.Add(sqlDataSource);RadChart1.DataSourceID = "myDataSource";RadChart1.Series[0].DataYColumn = "AverageSoldPrice";RadChart1.PlotArea.XAxis.DataLabelsColumn = "SearchDate";RadChart1.DataBind();.radComboBox td.rcbInputCell{ background-image: url('/Images/ComboBoxSprite.png') !important;}.radComboBox table td.rcbArrowCell{ background: #ffffff url('/Images/ComboBoxDropDown.png') no-repeat -1px 50%;}