Hi,
I got some issue with the autogenerated features :
I generated column dynamically with a StoredProcedure.
1. Change the default DatePicker of autogenerated DateTimeColumn :
I'm able to change the columnEditor with a customEditor. But here it is already a RadDateTimeColumnEditor, I need to find how change the default picker(datePicker) with a DateTimePicker.
protected void RadGridEdit_CreateColumnEditor(object sender, Telerik.Web.UI.GridCreateColumnEditorEventArgs e) { GridBoundColumn col = e.Column as GridBoundColumn; if (col != null && col.UniqueName!="Item" && Session["DataDef"]!=null) { DataSet ds = (DataSet)Session["DataDef"]; DataRow[] drDeff = null; if (ds.Tables[0].AsEnumerable().Any(row => col.UniqueName == row.Field<String>("ListColumnNameFr"))) { drDeff = ds.Tables[0].Select("ListColumnNameFr='" + col.UniqueName + "'"); } else { drDeff = ds.Tables[0].Select("ListColumnNameFr='" + (col.UniqueName).Replace(" ", "") + "'"); } if(drDeff.Length == 0) return; switch(drDeff[0][4] as string) { case "DROPDOWN": e.ColumnEditor = new CustomDropDownListEditor((ds.Tables[1].Select("ColumnKey='" + drDeff[0][1] + "'")).CopyToDataTable()); break; default: if (e.ColumnEditor is GridTextBoxColumnEditor) { GridTextBoxColumnEditor txt = e.ColumnEditor as GridTextBoxColumnEditor; txt.TextBoxMode = TextBoxMode.MultiLine; } else if (e.ColumnEditor is GridDateTimeColumnEditor) { GridDateTimeColumnEditor gdtce = e.ColumnEditor as GridDateTimeColumnEditor; gdtce.PickerControl.GetType(); } break; } } }
2. Change autogenerated filters :
Where and when can I change it?
Thx,
Bouyez.
Hi
im new in asp and telerik i want to know how to show the value of the gridBoundColumn that has the employeeID and set it as default in the textbox of the GridBoundcolumn, so i want to know if its possible and if it is how to do it or a workaround
Thanks

HI all,
Im trying to change the maxvalue from a radnumericbox from codebehind.
the value changes depending the value of od a radcombobox, i having problem with that tried in selectindexchange and even on the radnumeric onload but nothing works any opinions how i can do this , from code behind.
Best Regards

As we are working on RAD DIAGRAM and we are trying to customise. Our requirement is to show the designed diagram even after zoom in and zoom out but in the existing one once we zoom in and try to zoom out the designed diagram is going out of the RAD DIAGRAM window. So can you please suggest us to resolve this issue asap.
Thanks & Regards
Bhavya
Hi,
I have discovered an issue where the SelectedItem for a RadComboBox is null.
I use a System.Collections.Generic.IList to populate the RadComboBox.
When the IList has more than one item, then the RadComboBox works fine, and I can get the SelectedItem.
When the IList only has one item, then the RadComboBox has a SelectedItem of null.
Please see the attached to see how I populate the RadComboBox
Kinds regards,
Rob

Hi,
I have downloaded the Telerik components recently, but no skin is available for ComboBox although they are available in the directory (C:\Program Files\Telerik\UI for ASP.NET AJAX R1 2017\Skins)
Regards,
Sara

I have few text boxes and one RadAsyncUpload in the form.
When the form is submitted i am validating the text boxes in the server side and showing the validation message.
when the validation message box is shown, The RadAsyncupload controls is getting cleared.
I want to have the radAsyncUpload Control values to be persisted for the subsequent submit.
Thanks

Hi,
I want to upgrade from RadChart to RadHtmlChart. I am using version 2014.2.724.
Below is my current code with RadChart:
<radc1:radchart id="chart1" Width="700px" Margins-Top="20%" Margins-Right="2%" Margins-Left="5%"
Margins-Bottom="20%" Runat="server" align="centre" TextQuality="ClearTypeGridFit" ImageQuality="AntiAlias">
<Appearance FillStyle-MainColor ="White" FillStyle-SecondColor="AliceBlue" Border-Color=""></Appearance>
<PlotArea Appearance-FillStyle-MainColor ="White" Appearance-Corners="Rectangle,Rectangle,Rectangle,Rectangle,6"
Appearance-FillStyle-SecondColor="White">
<XAxis
Appearance-TextAppearance-TextProperties-Font="Arial, 6pt" Appearance-LabelAppearance-RotationAngle ="340"
Appearance-MajorGridLines-Color ="DimGray" Appearance-MinorGridLines-Color ="DimGray"
Appearance-MinorGridLines-Visible ="false" Appearance-MajorGridLines-Visible ="false"
Appearance-MajorTick-Length=2 Appearance-MajorTick-Color ="#C9C9C7"></XAxis>
<YAxis Appearance-TextAppearance-TextProperties-Font ="Arial, 6pt" Appearance-Color="#C9C8C7" MaxValue="80"
MinValue="-100" MaxItemsCount="15" Step="20" Appearance-MajorGridLines-Color ="DimGray" Appearance-MajorGridLines-Visible ="true" Appearance-MinorGridLines-Visible ="true" Appearance-MajorTick-Color ="#C9C8C7" >
<AxisLabel Visible="True" TextBlock-Text ="Number of Cases" Appearance-Position-Auto="true" TextBlock-Appearance-TextProperties-Font ="Verdana, 11px" TextBlock-Appearance-TextProperties-Color ="Black">
</AxisLabel >
</YAxis>
</PlotArea>
<Legend Visible="False">
<Appearance FillStyle-MainColor ="White" FillStyle-FillType ="Solid" Border-Color="227, 227, 227"></Appearance>
</Legend>
<ChartTitle TextBlock-Text ="Outstanding Cases - Number" TextBlock-Appearance-TextProperties-Font ="Arial, 10pt, style=Bold" TextBlock-Appearance-TextProperties-Color="128, 128, 255"
TextBlock-Appearance-Position-AlignedPosition="center" >
<Appearance FillStyle-FillType ="Solid" FillStyle-MainColor ="White" Border-Color="White"></Appearance>
</ChartTitle>
</radc1:radchart>
I am binding the chart data at server side.
Please suggest