Skip to content

Commit

Permalink
feat(BBj): add support for Field Tooltips
Browse files Browse the repository at this point in the history
field tooltips can be used to attach tooltips to the column cells based
on other column values
  • Loading branch information
hyyan committed Mar 24, 2020
1 parent eb65600 commit dfd98c4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions GxColumns.bbj
Expand Up @@ -609,6 +609,13 @@ class public GxDefaultColumnDefinition extends GxColumnDefinition
rem */
field public BBjString ChartType! = null()
rem /**
rem * The field of the tooltip to apply to the cell.
rem *
rem * <br><b><small>#Configuration</small></b>
rem * <br><b><small>#ColumnsRenderer</small></b>
rem */
field public BBjString TooltipField! = null()
rem /**
rem * Get pinned left constant
rem *
rem * @return BBjString <b>left</b>
Expand Down Expand Up @@ -1022,6 +1029,7 @@ class public GxDefaultColumnDefinition extends GxColumnDefinition
column!.addProperty("valueParser",#getValueParserExpression().toString(),err=*next)
column!. add("icons",iff(#getIcons().entrySet().size() <> 0 , #getIcons() , null()),err=*next)
column!.addProperty("chartDataType",#getChartType(),err=*next)
column!.addProperty("tooltipField",#getTooltipField(),err=*next)
filterEnabled! = #getEnableFilter()
filter! = #getFilter()

Expand Down

0 comments on commit dfd98c4

Please sign in to comment.