Skip to content

Commit

Permalink
Fix #13 - ag-Grid v15.0 component names have been renamed to be names…
Browse files Browse the repository at this point in the history
…paced.
  • Loading branch information
hyyan committed Jan 19, 2018
1 parent ebad654 commit 9e0157e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions BBjGridExWidget.bbj
Expand Up @@ -437,7 +437,7 @@ class public BBjGridExWidget extends BBjWidget
case Types.DECIMAL
case Types.DOUBLE
case Types.NUMERIC
cdef$=cdef$+",""type"":""numericColumn"",""filter"":""number"""
cdef$=cdef$+",""type"":""numericColumn"",""filter"":""agNumberColumnFilter"""
break
case Types.DATE
case Types.TIMESTAMP
Expand All @@ -447,7 +447,7 @@ class public BBjGridExWidget extends BBjWidget


case default
cdef$=cdef$+",""filter"":""text"""
cdef$=cdef$+",""filter"":""agTextColumnFilter"""
break


Expand Down Expand Up @@ -770,6 +770,12 @@ rem --------------------api methods--------------------------------

methodend

method public void moveColumn(BBjString Field$, BBjNumber toIndex!)
script$="bbj_grid_widget_set_column_move('" + Field$ + "'," + str(toIndex!) + ");"
#executeScript(script$)
methodend


rem /**
rem * set the selection mode of the grid
rem * @param BBjNumber mode: the selection mode, one of
Expand Down

0 comments on commit 9e0157e

Please sign in to comment.