Skip to content

Commit f5991b7

Browse files
authored
Fix a typo
1 parent 1912edc commit f5991b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

controls/searchbox/server-side-programming/events/ondatasourceselect.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ position: 3
1111
# OnDataSourceSelect
1212

1313

14-
The **OnDataSourceSelect** event is raised just before the result items are requested from the underlying DataSource, providing the ability to modify the parameters of the request. For instance with SqlDataSourcethe user can modify the SelectCommand and implement the filtering directly on the SQL Server.
14+
The **OnDataSourceSelect** event is raised just before the result items are requested from the underlying DataSource, providing the ability to modify the parameters of the request. For instance with SqlDataSource the user can modify the SelectCommand and implement the filtering directly on the SQL Server.
1515

1616
The event handler receives two parameters:
1717

1818
1. The instance of the SearchBox firing the event
1919

2020
1. An event arguments parameter that contains the following properties:
2121

22-
* **DataSource** -returns a reference to the DataSource control.
22+
* **DataSource** - returns a reference to the DataSource control.
2323

24-
* **FilterString** -returns the text that is typed in the SearchBox.
24+
* **FilterString** - returns the text that is typed in the SearchBox.
2525

26-
* **SelectedContextItem** -returns the selected context item in the SearchContext.
26+
* **SelectedContextItem** - returns the selected context item in the SearchContext.
2727

28-
* **UserContext** -returns the userContext object of type IDictionary that is passed through the [OnClientDataRequesting]({%slug searchbox/client-side-programming/events/onclientdatarequesting%}) event.
28+
* **UserContext** - returns the userContext object of type IDictionary that is passed through the [OnClientDataRequesting]({%slug searchbox/client-side-programming/events/onclientdatarequesting%}) event.
2929

3030
Here is a sample code demonstrating how this event can be used:
3131

0 commit comments

Comments
 (0)