This is a migrated thread and some comments may be shown as answers.

Can you populate a spreadsheet from table data? (ala a grid)

1 Answer 97 Views
Spreadsheet
This is a migrated thread and some comments may be shown as answers.
Kevin
Top achievements
Rank 1
Kevin asked on 25 Aug 2016, 07:18 PM

 Have a grid that I'm currently filling out via Angular like so:

              <tbody>
                        <tr ng-repeat="customer in customers | orderBy: 'domain'" ng-if="customer.email"  >
                            <td>{{customer.namebspr}}</td>
                            <td>{{customer.nummer}}</td>
                            <td>{{customer.domain}}</td>
                            <td>{{customer.domain2}}</td>
                            <td>{{customer.domain3}}</td>
                            <td>{{customer.domain4}}</td>
                            <td>{{customer.domain5}}</td>
                        </tr>
                    </tbody>

 

Can I do the same thing with a spreadsheet, or do I need to pull the json data directly?

 

 

 

1 Answer, 1 is accepted

Sort by
0
Alexander Popov
Telerik team
answered on 29 Aug 2016, 11:43 AM
Hello Kevin,

Initializing a Spreadsheet widget from an HTML table element and retaining the data is not supported. I would suggest either importing the sheets from the server or binding to a DataSource.

Regards,
Alexander Popov
Telerik by Progress
 
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
 
Tags
Spreadsheet
Asked by
Kevin
Top achievements
Rank 1
Answers by
Alexander Popov
Telerik team
Share this question
or