Carolina López

Results 15 comments of Carolina López

Add this line: `GooglePlusProvider.setScopes('https://www.googleapis.com/auth/userinfo.email');` after `GooglePlusProvider.init()` function

@bylertall how you did it? Can you help me?

Ok, i could did it with your explanation, i did it in this way: In the method ngOnInit, I added this code: ``` this.tableData.onChanged().subscribe((change) => { if (change.action === 'filter'...

I did: ``` settings['rowClassFunction'] = (row) => { if (row.data.type === '(-)') { return 'score negative'; // Color from row with negative in score } else if (row.data.type === '(+)')...

rowClassFunction was added in a PR. If you have the last version of the library it will work

@HaifaGhidhaoui It is not possible, because the `this` inside the function, is not the same `this` of the controller. It dependes in the context you are.

@anandhuajayakumar can you put your code here? This way I can help you

@anandhuajayakumar The problem is that _rowClassFunction_ is a property of settings , not a property of column. So your code should be: ``` settings = { columns: { user_id: {...

@iosnewbie2016 I think that you dont have value of variable : this.loggedInUserId. WHen you initializa settings maybe you dont have it. Try to add rowClassFunction in settings AFTER data es...

@krishnanirmal25 I have no idea how to add styles to noDataMessage