Hi,
I have integrated GridView in my application. This grid ist bound to a bindingsource. When my query for the binding source has no datas, then I missing the "new row" line for adding datas. Please see the attached files.
If IsNumeric(RadGridView1.CurrentRow.Cells("ComboNr").Value) Then
Dim iGruppeNr As Integer = grdParameter.CurrentRow.Cells("ComboNr").Value
bsDetekParaCombo.DataSource = (From Combo As tblDetekParaCombo In dbContext.tblDetekParaCombo
Order By Combo.ComboGruppeNr
Where Combo.ComboGruppeNr = iGruppeNr Select Combo).ToList
Else
'Here I will get a count of 0 rows and I missing the new line for adding rows
bsDetekParaCombo.DataSource = (From Combo As tblDetekParaCombo In dbContext.tblDetekParaCombo
Order By Combo.ComboGruppeNr
Where Combo.ComboGruppeNr = -1 Select Combo).ToList
grdCombo.MasterTemplate.Refresh()
End If
What I am doing wrong?
Karim
Hello:
I want to initialize default values on editor loading:
<p>void radDataEntry1_BindingCreated(object sender, BindingCreatedEventArgs e)</p><p>{</p><p>if (e.DataMember == "IsAdministrator")</p><p> { </p><p> e.Binding.NullValue = false;</p><p> }</p><p>}</p>
Thank you.
Rad Scheduler -
How to possible three cell collapse and display single cell in timeline control (like col span functionality)
and create appointment display run time
I am trying to replace a 3rd party tool with Telerik controls. Our application has a ComboTree which is basically a treeview inside a dropdown box.
I don't see any way to do this with your controls.
Please point me in the right direction
Thanks
Jason
Hi,
I'm looking into the Telerik 'UI for Winforms'. I develop in Progress OpenEdge and as Progress is now owner of Telerik I would like to develop a .NET gui for a new application with Telerik controls.
Before looking to Telerik I looked at Ingragistics. They have a control called 'MDI Tab Manager'. Purpose is, you have a MDI Form (parent) and the childforms appear as tabbed forms in the parent window.
I was wondering if Telerik has such a control. I've looked at all the .net controls but didn't find anything about this.
Kind regards
Bart S.
Hi,
I have used a RadGridView Element with different columns. One column is a GridViewMultiComboBoxColumn with a valuemember and a displaymember, When I drop down the combo I see the displaymember correctly. But when I leave the row I only see the valuemember (1,2,3..)
Private Sub RadGridView2_CellEditorInitialized(sender As Object, e As GridViewCellEventArgs) Handles RadGridView2.CellEditorInitialized
If e.Column.Name = "FeldArt2" Then
Dim editor As RadMultiColumnComboBoxElement = e.ActiveEditor
If IsNothing(editor) = False Then
Dim el As RadMultiColumnComboBoxElement = editor
el.AutoCompleteMode = AutoCompleteMode.Suggest
Dim lFeldArt As New List(Of clFeldArt)
lFeldArt.Add(New clFeldArt(1, "Date Picker"))
lFeldArt.Add(New clFeldArt(2, "Textfeld"))
lFeldArt.Add(New clFeldArt(3, "Combo"))
lFeldArt.Add(New clFeldArt(4, "Checkbox"))
el.ValueMember = "FeldID"
el.DisplayMember = "FeldArt"
el.DataSource = lFeldArt
el.AutoSizeDropDownToBestFit = True
editor.Columns("FeldID").IsVisible = False
End If
End If
End Sub
I have attached a file which explain what I mean.
Does anybody has an Idea whats wrong?
Thanks in advance for any help.
Karim
The added functionality to the full-text search in 2017.2 is really cool, especially the new close button.
An intuitive way to close the full-text search was on my to-do list for quite some time.
However, I noticed that the AllowSearchRow Property stays true even if the search row was closed/hidden by the user.
What's the best way to test if the full-text search row is currently visible?
So far, I have extended the grids context menu like this:
var searchRowMenuItem =
new
RadMenuItem(
"Full-text Search (Ctrl+F)"
);
searchRowMenuItem.Click +=
this
.searchRowMenuItem_Click;
searchRowMenuItem.IsChecked =
this
.AllowSearchRow;
Hello,
I need to have in both gridview and classic editor a user input to read decimal numbers (type float, double, decimal ...it does not matter) .
For the moment i m using RadSpinEditor and it is ok for values like 123.45 but sometimes the user can enter values like 0.000000150.
For the moment i m changing the number of decimal in the RadSpinEditor when the user have to enter very little values.
RadSpinEditor is very good for my needs because it has a maximum and minimal value and i use them.
RadSpinEditor can display in Hexadecimal format.
What is the best way to have the scientific format with RadSpinEditor?
thanks
Vincent.
Hello,
I associeted a RadRangeSelector to a RadChartView.
When i populated the first time the series of RadChartView. All is ok .
When i rebuild all my series of the RadChartView , the RadRangeSelector is not updated.
How update the RadRangeSelector when i update series.
Thanks.
Regards
Vincent.