offset
offset

Reputation: 1407

Angular ng-grid declare gridOptions in function

I'm new to Angular, and I'm trying to declare gridOption for ng-grid within a function, because I don't want it to fire before the data comes from the server. But if I do so, it cause an error:

TypeError: Cannot set property 'gridDim' of undefined

What is going on?

Upvotes: 0

Views: 1860

Answers (1)

Chandermani
Chandermani

Reputation: 42669

To stop rendering till the data arrives do something like

<div ng-if="contentAvailable">
   <ng-grid/>
</div>

In you controller when the data is available setup the gridoptions object, followed by contentAvailable to true.

Upvotes: 4

Related Questions