UIControllerAllowIncrementalSearch Property
Determines if the user is allowed to perform Incremental Search while the
Activity is set to
Browse.
Namespace: Firefly.BoxAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public bool AllowIncrementalSearch { get; set; }
Public Property AllowIncrementalSearch As Boolean
Get
Set
member AllowIncrementalSearch : bool with get, set
Property Value
Boolean If set to true, the user will be able to type values, and navigate to a row that matches the values he typed.
This example demonstrates the usage of BasicIncrementalSearch
This example is based on test data. The code for the entities included in this test data can be found in the documentation of
EntityThis example uses automatic tools to generate parts of the user interface. Those tools can be found in the example of the documentation of
Formusing System;
using System.Collections.Generic;
using System.Text;
using Firefly.Box;
using Firefly.Box.Testing;
namespace TestFirefly.Box.Documentation
{
public class BasicIncrementalSearch
{
public void IncrementalSearch()
{
var jobs = new Pubs.Jobs();
jobs.InitializeWithTestData();
var uic = new UIController()
{
From = jobs,
Activity = Activities.Browse,
AllowIncrementalSearch = true,//The default
View = UITools.GenerateFormWithGridFor("Display Jobs",
"Try typing the first letters of a value from another row, and see how the grid automatically navigates to that row",
jobs.Description,
jobs.MinLevel,
jobs.MaxLevel)
};
uic.Run();
}
}
}