You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in this example try to move columns. Now there i see at least 2 problems:
if after moving column i try to edit cell in moved column, after editing i get value of cell, that was here before. For example, if you move column B to place of C (you get col order ACBDE) and you try to edit cell C2, in input you get value of B2, and if you try to edit B2, you get value of C2.
How do i get values of cells in same column? Like here, in first row i have my own column titles, and i want columns named "price" to be rendered red, if the price is NaN or negative number.
The text was updated successfully, but these errors were encountered:
In 0.8.6 we have bugfix:
cell editor was using a wrong cell value if column order was manually changed
This fixes problem 1 of my post, but still i don't know how to read data of current column (what is current column number?) Check sam fiddle, as previously. it still doesn't work like it shoud.
Move column doesn't change your data array. If you want to get title of your columns you must get it from rendered table. Here you got working example: http://jsfiddle.net/5cY9M/2/
Hi.
After moving columns there are some problems.
Looks like there is problem to get value of current cell/column.
http://jsfiddle.net/5cY9M/
in this example try to move columns. Now there i see at least 2 problems:
if after moving column i try to edit cell in moved column, after editing i get value of cell, that was here before. For example, if you move column B to place of C (you get col order ACBDE) and you try to edit cell C2, in input you get value of B2, and if you try to edit B2, you get value of C2.
How do i get values of cells in same column? Like here, in first row i have my own column titles, and i want columns named "price" to be rendered red, if the price is NaN or negative number.
The text was updated successfully, but these errors were encountered: