Compare commits
4 Commits
41f67b26ec
...
07b2bcaeaf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
07b2bcaeaf | ||
|
|
028690308d | ||
|
|
3c186e39a4 | ||
|
|
43dced9489 |
@@ -163,6 +163,7 @@ Public Class RepositoryItemLookupControl3
|
||||
NullText = String.Format(_R.GetString("LookupControl_NoRecords"))
|
||||
Case 1
|
||||
NullText = Values.FirstOrDefault()
|
||||
OwnerEdit.EditValue = Values.FirstOrDefault()
|
||||
Case Else
|
||||
NullText = String.Format(_R.GetString("LookupControl_NRecords"), Values.Count)
|
||||
End Select
|
||||
@@ -172,6 +173,9 @@ Public Class RepositoryItemLookupControl3
|
||||
NullText = String.Format(_R.GetString("LookupControl_NoRecords"))
|
||||
Case Else
|
||||
NullText = Values.FirstOrDefault()
|
||||
' JJ at 07.05.2021
|
||||
' Setting the EditValue Is crucial for making the Control work as a Cell Editor!!!
|
||||
OwnerEdit.EditValue = Values.FirstOrDefault()
|
||||
End Select
|
||||
End If
|
||||
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("3.2.0.0")>
|
||||
<Assembly: AssemblyFileVersion("3.2.0.0")>
|
||||
<Assembly: AssemblyVersion("3.2.1.0")>
|
||||
<Assembly: AssemblyFileVersion("3.2.1.0")>
|
||||
|
||||
@@ -73,7 +73,7 @@ Public Class EDMIService
|
||||
#Region "=== Database ==="
|
||||
Public Function ReturnDatatableFromCache(Name As String, FilterExpression As String, SortByColumn As String) As TableResult Implements IEDMIService.ReturnDatatableFromCache
|
||||
Try
|
||||
_Logger.Info($"ReturnDatatableFromCache: Datatable: {Name}")
|
||||
_Logger.Debug($"ReturnDatatableFromCache: Datatable: {Name}")
|
||||
|
||||
Dim oDataset As DataSet = GlobalState.TableStore
|
||||
Dim oDataTable As DataTable = Nothing
|
||||
|
||||
Reference in New Issue
Block a user