-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.tsx
32 lines (30 loc) · 845 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React from 'react';
import {ListBoxComponent} from '@syncfusion/ej2-react-dropdowns';
import {DataManager, WebApiAdaptor, Query} from '@syncfusion/ej2-data';
//import {employees} from './data';
import './App.css';
function App() {
const divStyle = {
margin: 100,
width: 300
}
const remoteData = new DataManager({
url: "https://ej2services.syncfusion.com/production/web-services/api/Employees",
adaptor: new WebApiAdaptor,
crossDomain: true
})
const dataQuery = new Query().select(['FirstName', 'EmployeeID']).take(10).requiresCount();
return (
<div style={divStyle}>
<ListBoxComponent
dataSource={remoteData}
fields={{
value:"EmployeeID",
text:"FirstName"
}}
query={dataQuery}
></ListBoxComponent>
</div>
);
}
export default App;