I need a ComboBox column initialized with some data and the user can enter new data too when inserting new row into grid. For example, ComboBox column has three items by default Phone, Mobile, Fax, but the user needs to insert new item (e.g., Code). How can I do this?
Here is the code. With this code the user can only select one of the default values of combo column and he/she cannot enter his/her new value into combo column.
DataTable table = new DataTable();table.Columns.Add("Name", typeof(string));table.Columns.Add("Value", typeof(string));var details = db.BatchItemDetails.Where(d => d.BatchItem_Id == _id) .Select(d => new { d.Name, d.Value });foreach (var row in details) table.Rows.Add(row.Name, row.Value);grid.MasterTemplate.AutoGenerateColumns = false;grid.DataSource = table;GridViewComboBoxColumn name = new GridViewComboBoxColumn();name.DataSource = (from b in db.Batches join i in db.BatchItems on b.Id equals i.Batch_Id join d in db.BatchItemDetails on i.Id equals d.BatchItem_Id where b.Id == batchId orderby d.Name select d.Name).Distinct().ToArray(); // string array.name.AutoCompleteMode = AutoCompleteMode.Suggest;name.DropDownStyle = RadDropDownStyle.DropDown;name.Name = "Name";name.FieldName = "Name";name.HeaderText = "عنوان اطلاعات";name.Width = 219;name.TextAlignment = ContentAlignment.MiddleLeft;grid.Columns.Add(name);grid.Columns.Add("Value", "Ø´Ø±Ø Ø§Ø·Ù„Ø§Ø¹Ø§Øª", "Value");grid.Columns["Value"].Width = 353;grid.AutoSizeRows = true;
Hello,
i created a custom cell element.
The custom part of the Element is a RadListControl.
The functionality works but I want the ListControl Element fit perfect in the Cell.
I have tried a lot and read many forum threads to find a solution but nothing works.
There are still Gaps (see Screenshot).
I hope someone can help me quick with my request.
Greets André


Hi,
I am using the scheduler and I need to change the connection string at run time. How can I do that?
Thanks for the help.

Hi, i would like to know if when a user close a page on the pageview, the controls inside this page will be dereferenced (thus become eligible for garbage collection) or if I have to handle the closed event and manually remove all the controls inside the page.
Also would like to know if there is something I can do to cleanup removed pages or if the removed pages are automatically managed by the pageview control or if i have to call dispose on the page itself in the closed event.
It's just to be sure not to lock too much memory for too long time, i did not find a documentation page about this.
Best regards
Andrea

if we are using simple combo box with let suppose database. below is the example of datasource
1. Florida = FL
2. NewYork = NY
3. New Jerssy = NJ
if user press N (combo box is selected) it will select New York and if user again press N it will select next item in the list New Jerssy. can we have same behavior with multicolumn combo box.
regards,
zeeshan

Dear,
is there any capability to change or set the column type dynamically to GridViewHyperlinkColumn after binding?
Regards,

Hello,
I made some tests with the trial version (2015.02...) shipped with Progress Developer Studio and with this Version the localization worked. Now I purchased a regular Version (2016.02.....) and installed it. I build a complete new Form with a RadDock (correct version 2016.02...) in it an tried the localization in the following steps, which work with the 2015.02 Version
1. in the Using section:
USING Telerik.WinControls.UI.Localization.RadDockLocalizationProvider.
2. in the Constructor:
RadDockLocalizationProvider:CurrentProvider = NEW Basis.DockGermanLocalization().
After typing "RadDockLocalizationProvider:" the Dev.Studio proposes me the property "CurrentProvider". The form compiles with no errors. Running the form gives me then following error:
"System.MissingMethodException: The method "Telerik.Controls.UI.Localization.RadDockLocalizationProvider.CurrentProvider" not found"
What did I wrong? Thank you for your answer in advance
Regards
Jürgen
