Skip to content

DOCINFRA-2341_merged_using_automation #435

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ej2-react/inplace-editor/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ documentation: ug
domainurl: ##DomainURL##
---

# Getting Started
# Getting Started with React Inplace editor component

This section briefly explains about how to create a simple In-place Editor and demonstrate the basic usage of the In-place Editor component.

To get start quickly with React Inplace editor, you can check on this video:

{% youtube "https://www.youtube.com/watch?v=hr3JVzTgnRI" %}

## Dependencies

The following is the list of dependencies required to use the In-place Editor component in your application.
Expand Down
8 changes: 4 additions & 4 deletions ej2-react/uploader/async.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ import * as ReactDOM from "react-dom";
export default class App extends React.Component<{}, {}> {
public uploadObj: UploaderComponent;
public path: object = {
removeUrl: 'https://ej2.syncfusion.com/services/api/uploadbox/Remove',
saveUrl: 'https://ej2.syncfusion.com/services/api/uploadbox/Save'
saveUrl: 'https://services.syncfusion.com/js/production/api/FileUploader/Save',
removeUrl: 'https://services.syncfusion.com/js/production/api/FileUploader/Remove'
}

public addHeaders(args: UploadingEventArgs) {
Expand Down Expand Up @@ -460,8 +460,8 @@ import * as ReactDOM from "react-dom";
function App(){
let uploadObj: UploaderComponent;
const path: object = {
removeUrl: 'https://ej2.syncfusion.com/services/api/uploadbox/Remove',
saveUrl: 'https://ej2.syncfusion.com/services/api/uploadbox/Save'
saveUrl: 'https://services.syncfusion.com/js/production/api/FileUploader/Save',
removeUrl: 'https://services.syncfusion.com/js/production/api/FileUploader/Remove'
}

function addHeaders(args: UploadingEventArgs) {
Expand Down