Hi,
I want to use the Dynamic filter to limit the rows.
However the moment I mark the grid as Read Only, the filter row also becomes readonly and I cannot use it.
I've seen the same thread for C# but with been new to coding i can't figure the example out. If you could add whats needed on to my code it would allow me to understand better with been new.
Imports Syncfusion.Data
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'TESTDataSet.UDEF_STOCK_BY_LOCATION_LEEDS' table. You can move, or remove it, as needed.
Me.UDEF_STOCK_BY_LOCATION_LEEDSTableAdapter.Fill(Me.TESTDataSet.UDEF_STOCK_BY_LOCATION_LEEDS)
AddHandler Me.SfDataGrid1.CellDoubleClick, AddressOf SFDataGrid_CellDoubleClick
End Sub
Private Sub SFDataGrid_CellDoubleClick(ByVal sender As Object, ByVal e As Syncfusion.WinForms.DataGrid.Events.CellClickEventArgs)
If e.DataRow IsNot Nothing AndAlso e.DataRow.RowData IsNot Nothing Then
Dim form = New Form2()
form.TextBox1.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(0).ToString()
form.TextBox2.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(1).ToString()
form.TextBox3.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(2).ToString() & " " & (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(3).ToString()
form.TextBox4.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(4).ToString()
form.TextBox5.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(7).ToString()
form.TextBox6.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(6).ToString()
form.TextBox7.Text = (TryCast(e.DataRow.RowData, DataRowView)).Row.ItemArray(5).ToString()
form.ShowDialog()
End If
End Sub
End Class