Skip to content

Commit 6a77b4c

Browse files
author
pipeline
committed
v20.2.43 is released
1 parent 7e256b1 commit 6a77b4c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

ReadMe.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ Add your sample order in the `src/common/sampleOrder.json` with corresponding ca
1010

1111
Note: Do not use whitespace at any cause in folder’s name. Use “-” instead of space.
1212

13-
[Refer here](https://bitbucket.org/syncfusion/ej2-sample-browser/src/7740ab838973c7ebb3e970acb5246ff4c89ccd67/src/?at=master)
13+
[Refer here](https://github.com/syncfusion/ej2-samples/tree/master/src)
1414

1515
### Configure the folder and sample
1616

1717
Create the “sample.json” file inside of your control folder. Create your sample html and ts file in same folder also name the html and ts files with same name.
1818

1919
Note: Do not use whitespace at any cause in file’s name. Use “-” instead of space.
2020

21-
[Refer here](https://bitbucket.org/syncfusion/ej2-sample-browser/src/7740ab838973c7ebb3e970acb5246ff4c89ccd67/src/button/?at=master)
21+
[Refer here](https://github.com/syncfusion/ej2-samples/tree/master/src/button)
2222

2323
### Configure Sample JSON
2424

@@ -230,15 +230,15 @@ Note: Here, The mentioned IP is your local machine IP Address.
230230

231231
1. In import statements in html file for a sample the package subdirectory shouldn’t be mentioned. Please refer the link given below.
232232

233-
https://gitlab.syncfusion.com/essential-studio/ej2-samples/blob/development/src/grid/events.ts#L3
233+
https://github.com/syncfusion/ej2-samples/blob/master/src/grid/events.ts#L3
234234

235235
2. In Base component dom and util are not available in the customer end. So, please don’t use the same. Please refer the link below.
236236

237-
https://gitlab.syncfusion.com/essential-studio/ej2-samples/blob/development/src/grid/events.ts#L3
237+
https://github.com/syncfusion/ej2-samples/blob/master/src/grid/events.ts#L3
238238

239239
3. To add any icon in the samples use base64 font and don’t use any font files like ttf, woff, or svg externally. Please refer the link given below.
240240

241-
https://gitlab.syncfusion.com/essential-studio/ej2-samples/blob/development/src/toolbar/default.html#L5
241+
https://github.com/syncfusion/ej2-samples/blob/master/src/toolbar/default.ts#L13
242242

243243
For example:
244244
```
@@ -262,10 +262,10 @@ Note: Here, The mentioned IP is your local machine IP Address.
262262

263263
4. For loading json files in the sample use import statements instead of require. Please refer the link given below.
264264

265-
https://gitlab.syncfusion.com/essential-studio/ej2-samples/blob/development/src/calendar/internationalization.ts#L9
265+
https://github.com/syncfusion/ej2-samples/blob/master/src/auto-complete/custom-filtering.ts#L7
266266

267267
( For example: import * as testJson from '../common/cldr-data/supplemental/numberingSystems.json'; )
268268

269269
5. If a New Component is added to TypeScript Sample Browser it’s package dependency should be added to the config in src/sys.js file.
270270

271-
( For example: https://gitlab.syncfusion.com/essential-studio/ej2-samples/blob/development/src/sys.js#L19 )
271+
( For example: https://github.com/syncfusion/ej2-samples/blob/master/src/sys.js#L19 )

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-samples",
3-
"version": "20.2.36",
3+
"version": "20.2.43",
44
"description": "Samples for Syncfusion Essential JS 2",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/tree-grid/adaptive.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ TreeGrid.Inject(Page, Filter, Sort, Edit, Toolbar);
2828
editSettings: { allowAdding: true, allowEditing: true, allowDeleting: true, mode: 'Dialog' },
2929
toolbar: ['Add', 'Edit', 'Delete', 'Update', 'Cancel', 'Search'],
3030
columns: [
31-
{ field: 'taskID', headerText: 'Task ID', isPrimaryKey: true, width: 135, textAlign: 'Right' },
32-
{ field: 'taskName', headerText: 'Task Name', width: 280, textAlign: 'Left' },
33-
{ field: 'duration', headerText: 'Duration', width: 140, textAlign: 'Right' },
31+
{ field: 'taskID', headerText: 'Task ID', isPrimaryKey: true, validationRules: { required: true, number: true}, width: 135, textAlign: 'Right' },
32+
{ field: 'taskName', headerText: 'Task Name',validationRules: { required: true}, width: 280, textAlign: 'Left' },
33+
{ field: 'duration', headerText: 'Duration',validationRules: {required: true}, width: 140, textAlign: 'Right' },
3434
{ field: 'progress', headerText: 'Progress', width: 145, textAlign: 'Right' }
3535
],
3636
});

0 commit comments

Comments
 (0)