Skip to content

Commit

Permalink
chore(demo): fix demo titless
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyan committed Mar 20, 2020
1 parent 95c2e4e commit ec6d7fc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo/ColumnHeaderHeightAndTextOrientation.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use com.basiscomponents.bc.SqlQueryBC
use com.google.gson.JsonObject

declare auto BBjTopLevelWindow wnd!
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,1000,600,"Columns Header Demo")
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,1000,600,"ColumnHeader Height And Text Orientation")
wnd!.setCallback(BBjAPI.ON_CLOSE,"byebye")
wnd!.setCallback(BBjAPI.ON_RESIZE,"resize")

Expand Down
2 changes: 1 addition & 1 deletion demo/ColumnPinning.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use com.basiscomponents.bc.SqlQueryBC
declare auto BBjTopLevelWindow wnd!
declare BBjGridExWidget grid!

wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Simple CD-Store Demo")
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Columns Pinning Demo")
wnd!.setCallback(BBjAPI.ON_CLOSE,"byebye")
wnd!.setCallback(BBjAPI.ON_RESIZE,"resize")

Expand Down
2 changes: 1 addition & 1 deletion demo/ColumnSuppressMovableAndLockPosition.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use com.basiscomponents.bc.SqlQueryBC
declare auto BBjTopLevelWindow wnd!
declare BBjGridExWidget grid!

wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Simple CD-Store Demo")
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Column Suppress Movable And LockPosition Demo")
wnd!.setCallback(BBjAPI.ON_CLOSE,"byebye")
wnd!.setCallback(BBjAPI.ON_RESIZE,"resize")

Expand Down
2 changes: 1 addition & 1 deletion demo/FontAwesomeIcons.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use com.basiscomponents.bc.SqlQueryBC
declare auto BBjTopLevelWindow wnd!
declare BBjGridExWidget grid!

wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Icons Demo")
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"FontAwesome Icons Demo")
wnd!.setCallback(BBjAPI.ON_CLOSE,"byebye")
wnd!.setCallback(BBjAPI.ON_RESIZE,"resize")

Expand Down
2 changes: 1 addition & 1 deletion demo/HighlightingRowsAndColumns.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use com.google.gson.JsonObject

declare auto BBjTopLevelWindow wnd!

wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Column Grouping Demo")
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Highlighting Rows And Columns Demo")
wnd!.setCallback(BBjAPI.ON_CLOSE,"byebye")
wnd!.setCallback(BBjAPI.ON_RESIZE,"resize")

Expand Down
2 changes: 1 addition & 1 deletion demo/SortingAPI.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use com.basiscomponents.db.ResultSet
use com.basiscomponents.bc.SqlQueryBC

declare auto BBjTopLevelWindow wnd!
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Columns Header Demo")
wnd! = BBjAPI().openSysGui("X0").addWindow(10,10,800,600,"Sorting API Demo")
wnd!.setCallback(BBjAPI.ON_CLOSE,"byebye")
wnd!.setCallback(BBjAPI.ON_RESIZE,"resize")

Expand Down

0 comments on commit ec6d7fc

Please sign in to comment.