Skip to content

Commit

Permalink
introduce unique control type id
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Wald committed Feb 15, 2019
1 parent 47c5f07 commit 75f13d2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions BBjGridExWidget.bbj
Expand Up @@ -347,6 +347,15 @@ class public BBjGridExWidget extends BBjWidget
rem */
method public BBjGridExWidget(BBjChildWindow wnd!)
#super!.create(wnd!)
methodend
REM /**
REM *
REM * returns the unique control type
REM * @returns int controlType = 65001
REM *
REM */
method public int getControlType()
methodret 65001
methodend
rem /**
rem * @Override
Expand Down Expand Up @@ -1198,7 +1207,7 @@ class public BBjGridExWidget extends BBjWidget
rem * Stop editing and discard changes
rem */
method public void stopEditing()
#executeScript("gw_stopEditing('" + #GRIDID$ "',0)")
#executeScript("gw_stopEditing('" + #GRIDID$ + "',0)")
methodend
rem /**
rem * Stop Editing
Expand Down Expand Up @@ -1295,7 +1304,7 @@ class public BBjGridExWidget extends BBjWidget
rem /**
rem * @return one if ag grid is in the editing mode , 0 otherwise
rem */
method public BBjNUmber isEditing()
method public BBjNumber isEditing()
return #Editing
methodend
rem /**
Expand Down

0 comments on commit 75f13d2

Please sign in to comment.