This repository has been archived by the owner on Feb 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NEW FEATURE] Search function in data (#568)
* Create draft PR for #566 * + External invoke search(possible filter entities from outside), if criteria is exact and reqired entity exist in collection , then entity is selected also in view , otherwise it behave like filter * fixing layout in search header. * fix bug with scroll, it is shown when is needed(this commit solve isue about neccessary to resize by grid splitter and then datagrid scroll bar was occured) Co-authored-by: sino32 <[email protected]> Co-authored-by: Peter Barancek <[email protected]>
- Loading branch information
1 parent
5370c4d
commit 829d52f
Showing
11 changed files
with
123 additions
and
66 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/TcoData/src/TcoDataConnector/pex/IDataExchangeOperations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace TcoData | ||
{ | ||
/// <summary> | ||
/// An interaface which grants access to certain operations in DataExchange viewmodel, | ||
/// like searching by id, invoking search or filling the searchbox | ||
/// </summary> | ||
public interface IDataExchangeOperations | ||
{ | ||
object SelectedRecord { get; } | ||
string FilterByID { get; set; } | ||
void InvokeSearch(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters