How do I add two buttons to the toolbar?

1

I have 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())
]
    
asked by anonymous 09.06.2015 / 14:23

1 answer

0

I got the answer here .
It looks like this:

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

        ]

Now I only need to align one on the left and one on the right.

    
09.06.2015 / 14:33