How to add two buttons to Toolbar?

Asked

Viewed 46 times

1

I have a grid and would like to put two buttons on toolbar.
At the moment I’m trying like this, but it’s not working:

toolbar: [
         {
              text: "Exportar para Excel",
              name: ["excel"]
         },
         kendo.template($("#template").html())
]

1 answer

0


I got the answer here.
Stayed like this:

toolbar: [
            {
                text: "Exportar para Excel",
                name: ["excel"]
            },
            {
                template: ($("#template").html())
            }

        ]

Now I just need to line up one on the left and one on the right.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.