Skip to content

Commit

Permalink
Merge pull request #10340 from abpframework/auto-merge/rel-4-4/583
Browse files Browse the repository at this point in the history
Merge branch rel-5.0 with rel-4.4
  • Loading branch information
cotur committed Oct 17, 2021
2 parents 064d569 + fe7bc90 commit 38ac656
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/en/Local-Event-Bus.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ namespace AbpDemo
{
public async Task HandleEventAsync(StockCountChangedEvent eventData)
{
//TODO: your code that does somthing on the event
//TODO: your code that does something on the event
}
}
}
Expand Down Expand Up @@ -272,4 +272,4 @@ The event types are;
Pre-build events are published when you save changes to the database;

* For EF Core, they are published on `DbContext.SaveChanges`.
* For MongoDB, they are published when you call repository's `InsertAsync`, `UpdateAsync` or `DeleteAsync` methods (since MongoDB has not a change tracking system).
* For MongoDB, they are published when you call repository's `InsertAsync`, `UpdateAsync` or `DeleteAsync` methods (since MongoDB has not a change tracking system).
3 changes: 3 additions & 0 deletions docs/en/Module-Entity-Extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,3 +491,6 @@ Here, a few things you can do:
* You can override a domain or application service to perform custom logics with your new property.
* You can low level control how to add/render a field in the data table on the UI.

## See Also

* [Angular UI Extensions](UI/Angular/Extensions-Overall.md)
10 changes: 10 additions & 0 deletions docs/en/UI/Angular/Extensions-Overall.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Angular UI Extensions

Angular UI extensions system allows you to add a new action to the actions menu, a new column to the data table, a new action to the toolbar of a page, and add a new field to the create and/or edit forms.

See the documents below for the details:

* [Entity Action Extensions](Entity-Action-Extensions.md)
* [Data Table Column (or Entity Prop) Extensions](Data-Table-Column-Extensions.md)
* [Page Toolbar Extension](Page-Toolbar-Extensions.md)
* [Dynamic Form (or Form Prop) Extensions](Dynamic-Form-Extensions.md)
4 changes: 4 additions & 0 deletions docs/en/docs-nav.json
Original file line number Diff line number Diff line change
Expand Up @@ -1053,6 +1053,10 @@
{
"text": "Extensions",
"items": [
{
"text": "Overall",
"path": "UI/Angular/Extensions-Overall.md"
},
{
"text": "Entity Action Extensions",
"path": "UI/Angular/Entity-Action-Extensions.md"
Expand Down

0 comments on commit 38ac656

Please sign in to comment.