Giter Site home page Giter Site logo

Comments (10)

artf avatar artf commented on July 26, 2024 3

in your code, you didn't create any button...

from preset-newsletter.

artf avatar artf commented on July 26, 2024 2

check the console, you probably getting an error here sender.set('active', false);, remove it or put this check sender && sender.set && sender.set('active', false)

from preset-newsletter.

suraj740 avatar suraj740 commented on July 26, 2024 2

Thanks @artf
Not getting error now , but button is also not visible to get html.
screen shot 2017-10-25 at 6 14 27 pm

from preset-newsletter.

suraj740 avatar suraj740 commented on July 26, 2024 2

@artf , code is working and now i am able to store html and css.
Thank you very much.

from preset-newsletter.

artf avatar artf commented on July 26, 2024

You have the list of commands here https://github.com/artf/grapesjs-preset-newsletter#summary

from preset-newsletter.

suraj740 avatar suraj740 commented on July 26, 2024

Thanks @artf
But its not working, i had already tried.

var commands = editor.Commands;
        commands.add('getHtmlBtn', {
            run: function (editor, sender) {
                // sender && sender.set('active'); // turn off the button
                sender.set('active', false);
                var html = editor.runCommand('gjs-get-inlined-html');
                editor.store();
                window.alert('Draft');
                console.log('html', html);
                editor.on('storage:store', function (e) {
                    console.log('Stored ', e);
                });
            }
        });
        var myCommand = commands.get('getHtmlBtn');
        myCommand.run();

from preset-newsletter.

artf avatar artf commented on July 26, 2024

You should not call the command like this

var myCommand = commands.get('getHtmlBtn');
myCommand.run();

just

editor.runCommand('getHtmlBtn');

from preset-newsletter.

suraj740 avatar suraj740 commented on July 26, 2024

@artf
Tried these commands , but nothing happened.

var commands = editor.Commands;
        commands.add('getHtmlBtn', {
            run: function (editor, sender) {
                // sender && sender.set('active'); // turn off the button
                sender.set('active', false);
                var html = editor.runCommand('gjs-get-inlined-html');
                editor.store();
                window.alert('Draft');
                console.log('html', html);
                editor.on('storage:store', function (e) {
                    console.log('Stored ', e);
                });
            }
        });
        editor.runCommand('getHtmlBtn');

screen shot 2017-10-23 at 6 48 55 pm

from preset-newsletter.

suraj740 avatar suraj740 commented on July 26, 2024

Thanks @artf
But getting same error using sender && sender.set('active');
var commands = editor.Commands;
commands.add('getHtmlBtn', {
run: function (editor, sender) {
sender && sender.set('active'); // turn off the button
// sender.set('active', false);
var html = editor.runCommand('gjs-get-inlined-html');
editor.store();
$window.alert('Draft');
$log.debug('html', html);
editor.on('storage:store', function (e) {
$log.debug('Stored ', e);
});
}
});
editor.runCommand('getHtmlBtn');
screen shot 2017-10-25 at 5 42 21 pm

from preset-newsletter.

artf avatar artf commented on July 26, 2024

@suraj740 sender && sender.set && sender.set('active', false)

from preset-newsletter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.