Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
160
Ignite Grid Methods using Angular JS Directives
posted

Hello -

I am currently using the Ignite UI Angular Directives for the igGrid (http://igniteui.github.io/igniteui-angular/)

I am using the Angular Controller method to setup my grid.

My question:

In my Angular JS Controller, is there a way for me to call Methods on the Grid?

i.e. 

$("#grid").igGridUpdating("addRow", {ID: 1, Name: "John"});
$("#grid").igGridUpdating("setCellValue", 5, "ProductName", "bologna");

Since I cannot use the standard jQuery syntax in my Angular JS controller, is there another way to call these types of Methods on the Ignite/Angular Grid?

Such as $scope.grid.igGridUpdating(...)??

Thank You,

Dominick