Compare commits
1 Commits
Release-2.
...
c2b3c023b9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c2b3c023b9 |
@@ -804,6 +804,7 @@ Public Class ClassControlCreator
|
|||||||
|
|
||||||
Public Function GridTables_GetRepositoryItemForColumn(pColumnName As String, pDataTable As DataTable, pIsAdvancedLookup As Boolean) As RepositoryItem
|
Public Function GridTables_GetRepositoryItemForColumn(pColumnName As String, pDataTable As DataTable, pIsAdvancedLookup As Boolean) As RepositoryItem
|
||||||
If pIsAdvancedLookup Then
|
If pIsAdvancedLookup Then
|
||||||
|
|
||||||
Dim oEditor = New RepositoryItemLookupControl3
|
Dim oEditor = New RepositoryItemLookupControl3
|
||||||
|
|
||||||
If pDataTable IsNot Nothing Then
|
If pDataTable IsNot Nothing Then
|
||||||
@@ -812,34 +813,18 @@ Public Class ClassControlCreator
|
|||||||
oEditor.DataSource = pDataTable
|
oEditor.DataSource = pDataTable
|
||||||
End If
|
End If
|
||||||
|
|
||||||
' Erlaube ungültige Werte (verhindert automatisches Löschen)
|
|
||||||
oEditor.NullText = "[Ungültiger Wert]"
|
|
||||||
oEditor.ShowFooter = False
|
|
||||||
oEditor.AllowNullInput = DefaultBoolean.True
|
|
||||||
oEditor.ValidateOnEnterKey = True
|
|
||||||
|
|
||||||
' KRITISCH: Erlaube Texteingabe für ungültige Werte
|
|
||||||
oEditor.TextEditStyle = TextEditStyles.Standard
|
|
||||||
|
|
||||||
' Weitere Standard-Eigenschaften für LookupControl3
|
|
||||||
'oEditor.ImmediatePopup = False
|
|
||||||
|
|
||||||
Return oEditor
|
Return oEditor
|
||||||
Else
|
Else
|
||||||
Dim oEditor = New RepositoryItemComboBox()
|
Dim oEditor = New RepositoryItemComboBox()
|
||||||
Dim oItems As New List(Of String)
|
Dim oItems As New List(Of String)
|
||||||
|
|
||||||
' KRITISCH: Erlaube Anzeige ungültiger Werte
|
|
||||||
oEditor.TextEditStyle = TextEditStyles.Standard ' Statt DisableTextEditor!
|
|
||||||
oEditor.AllowNullInput = DefaultBoolean.True
|
|
||||||
oEditor.ValidateOnEnterKey = True
|
|
||||||
|
|
||||||
AddHandler oEditor.Validating, Sub(_sender As ComboBoxEdit, _e As CancelEventArgs)
|
AddHandler oEditor.Validating, Sub(_sender As ComboBoxEdit, _e As CancelEventArgs)
|
||||||
' Prüfe nur bei Änderung, nicht beim Anzeigen
|
If oItems.Contains(_sender.EditValue) Then
|
||||||
If Not oItems.Contains(_sender.EditValue) AndAlso _sender.IsModified Then
|
_e.Cancel = False
|
||||||
|
Else
|
||||||
_e.Cancel = True
|
_e.Cancel = True
|
||||||
_sender.ErrorText = "Ungültiger Wert - bitte neu auswählen"
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
If pDataTable IsNot Nothing Then
|
If pDataTable IsNot Nothing Then
|
||||||
@@ -861,6 +846,7 @@ Public Class ClassControlCreator
|
|||||||
Return oEditor
|
Return oEditor
|
||||||
End If
|
End If
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Sub GridTables_HandleControlValueChange(pControlPanel As XtraScrollableControl, pColumnsWithSqlAndControlPlaceholders As DataTable)
|
Public Sub GridTables_HandleControlValueChange(pControlPanel As XtraScrollableControl, pColumnsWithSqlAndControlPlaceholders As DataTable)
|
||||||
If Not IsNothing(pColumnsWithSqlAndControlPlaceholders) AndAlso pColumnsWithSqlAndControlPlaceholders.Rows.Count > 0 Then
|
If Not IsNothing(pColumnsWithSqlAndControlPlaceholders) AndAlso pColumnsWithSqlAndControlPlaceholders.Rows.Count > 0 Then
|
||||||
For Each oRow As DataRow In pColumnsWithSqlAndControlPlaceholders.Rows
|
For Each oRow As DataRow In pColumnsWithSqlAndControlPlaceholders.Rows
|
||||||
|
|||||||
@@ -462,43 +462,23 @@ Namespace ControlCreator
|
|||||||
isApplyingInheritedValue = True
|
isApplyingInheritedValue = True
|
||||||
Try
|
Try
|
||||||
_Logger.Info(String.Format("Inherit Value is active for column. So inheritting the value [{0}]...", valueToApply))
|
_Logger.Info(String.Format("Inherit Value is active for column. So inheritting the value [{0}]...", valueToApply))
|
||||||
|
For dataIndex As Integer = listIndex + 1 To pView.DataRowCount - 1
|
||||||
|
Dim targetHandle = pView.GetRowHandle(dataIndex)
|
||||||
|
If targetHandle = DevExpress.XtraGrid.GridControl.InvalidRowHandle OrElse pView.IsGroupRow(targetHandle) Then
|
||||||
|
Continue For
|
||||||
|
End If
|
||||||
|
|
||||||
' Batch-Update mit BeginUpdate/EndUpdate für bessere Performance
|
If pView.IsNewItemRow(targetHandle) Then
|
||||||
pView.BeginUpdate()
|
Exit For
|
||||||
Try
|
End If
|
||||||
For dataIndex As Integer = listIndex + 1 To pView.DataRowCount - 1
|
|
||||||
Dim targetHandle = pView.GetRowHandle(dataIndex)
|
|
||||||
If targetHandle = DevExpress.XtraGrid.GridControl.InvalidRowHandle OrElse pView.IsGroupRow(targetHandle) Then
|
|
||||||
Continue For
|
|
||||||
End If
|
|
||||||
|
|
||||||
If pView.IsNewItemRow(targetHandle) Then
|
Dim existingValue = pView.GetRowCellValue(targetHandle, pArgs.Column.FieldName)
|
||||||
Exit For
|
If Equals(existingValue, valueToApply) Then
|
||||||
End If
|
Continue For
|
||||||
|
End If
|
||||||
Dim existingValue = pView.GetRowCellValue(targetHandle, pArgs.Column.FieldName)
|
|
||||||
If Equals(existingValue, valueToApply) Then
|
|
||||||
Continue For
|
|
||||||
End If
|
|
||||||
|
|
||||||
pView.SetRowCellValue(targetHandle, pArgs.Column.FieldName, valueToApply)
|
|
||||||
Next
|
|
||||||
|
|
||||||
' WICHTIG: Nach dem Setzen der Werte die Spalte neu zeichnen
|
|
||||||
pView.LayoutChanged()
|
|
||||||
|
|
||||||
' Nur die betroffene Spalte invalidieren (effizienter als alle Zeilen)
|
|
||||||
For dataIndex As Integer = listIndex + 1 To pView.DataRowCount - 1
|
|
||||||
Dim targetHandle = pView.GetRowHandle(dataIndex)
|
|
||||||
If targetHandle <> DevExpress.XtraGrid.GridControl.InvalidRowHandle AndAlso Not pView.IsNewItemRow(targetHandle) Then
|
|
||||||
pView.InvalidateRowCell(targetHandle, pArgs.Column)
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
|
|
||||||
Finally
|
|
||||||
pView.EndUpdate()
|
|
||||||
End Try
|
|
||||||
|
|
||||||
|
pView.SetRowCellValue(targetHandle, pArgs.Column.FieldName, valueToApply)
|
||||||
|
Next
|
||||||
Finally
|
Finally
|
||||||
isApplyingInheritedValue = False
|
isApplyingInheritedValue = False
|
||||||
End Try
|
End Try
|
||||||
|
|||||||
@@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.8.0.0")>
|
<Assembly: AssemblyVersion("2.7.9.0")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
<Assembly: NeutralResourcesLanguage("")>
|
<Assembly: NeutralResourcesLanguage("")>
|
||||||
|
|||||||
Reference in New Issue
Block a user