Skip to main content

Posts

Showing posts from July, 2019

Updates were rejected because the tip of your current branch is behind in BitBucket

Adding an existing project to GitHub using the command line Create a new repository  on GitHub. To avoid errors, do not initialize the new repository with  README , license, or  gitignore  files. You can add these files after your project has been pushed to GitHub. Open  Git Bash . Change the current working directory to your local project. Initialize the local directory as a Git repository. $ git init Add the files in your new local repository. This stages them for the first commit. $ git add . # Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE '. Commit the files that you've staged in your local repository. $ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again. At the top of your GitHub repo

Extjs Dynamically Update Panel content html

To add html to an EXTJS panel after it has been rendered you can use. Ext.getCmp(''the I.D of your panel'').body.update(''your HTML"); new Ext.Panel({             border: false,             frame: false,             width: 200,             region: 'west',             id: 'panel-id',             bodyStyle: "background: #fff"         } //and I want in another module change panel content... so use this: Ext.getCmp('panel-id').body.update('html content for example'); Example 2: {     xtype: 'panel',     title: 'Testing',     id: 'taskpanel',     html: 'testing' } //to update the panel content. For html use body.update 3 Ways to render HTML inside of a ExtJS container Ext.onReady(function() {     new Ext.Panel({         renderTo: Ext.getBody(),         title: '3 Ways to render HTML inside of a ExtJS container',         items: [{             html: &quo