-
Notifications
You must be signed in to change notification settings - Fork 1k
Created item actions frozen column on right side #1340
Created item actions frozen column on right side #1340
Conversation
- Fixes Issue #1267
Noticing the rows being off by about a pixel in Firefox, but not in Chrome. In IE 9 & 10, the rows don't have bottom borders present within the actions table. Going to be problematic getting this cross-browser, might need to add a small browser-sniffing utility function in the |
@@ -201,7 +300,8 @@ | |||
list_selectable: false, | |||
list_sortClearing: false, | |||
list_rowRendered: null, | |||
list_frozenColumns: 0 | |||
list_frozenColumns: 0, | |||
list_itemActions: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should call this option list_actions
to simplify (replacing the name throughout the control). Then, I'd suggest making this accept an object vs an array. The object would have an items
attribute, which would be the array of action items :) The reason for the object is I think we need other attributes here, such as label
and width
. Since the actions column, while fixed, is essentially an additional column, we need a means to set it's column label and width just like we have via the columns settings.
We will essentially need to create an automatic additional column for actions if The settings for the additional column should be as follows:
This additional column should be added in |
Note: I modified my suggestions for the dynamic column in |
Needs:
|
@CormacMcCarthy That is correct working on all of that now thanks! |
- Won't be adding documentation yet till multi select is completed and integrated. - Added Unit tests - Fixed remaining IE9 bugs
@BenjaminNeilDavis Code looks good, still seeing some stylistic issues in Firefox involving the action column rows not aligning with the rest of the row. Might need to change that also noticing an issue in Chrome where the actions column has a left border that is appearing above the |
- Won't be adding documentation yet till multi select is completed and integrated. - Added Unit tests - Fixed remaining IE9 bugs
- Won't be adding documentation yet till multi select is completed and integrated. - Added Unit tests - Fixed remaining IE9 bugs
…ction-frozen-column Created item actions frozen column on right side
Fixes #1267
ex: