Skip to content

Commit

Permalink
fix: typo in samples
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Wald committed Oct 6, 2019
1 parent 188208f commit 46be4f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/CellsConditionalStylingDemo.bbj
Expand Up @@ -53,7 +53,7 @@ main:
grid!.addColumn("ARTIST","Artist Name")
grid!.addColumn("PLAYINGTIME","Playing Time (min)")
grid!.addColumn("TITLE","Record Title")
grid!.addColumn("MUSICTYPE","Gener")
grid!.addColumn("MUSICTYPE","Genre")
grid!.addColumn("LABEL","Publisher")

grid!.setColumnBackColor("CDNUMBER",BBjAPI().makeColor("LTGRAY"))
Expand Down
2 changes: 1 addition & 1 deletion demo/ColumnGroupingNestedDemo.bbj
Expand Up @@ -62,7 +62,7 @@ main:
grid!.addColumn("COST","COST")
grid!.addColumn("ARTIST","Artist Name")
grid!.addColumn("TITLE","Record Title")
grid!.addColumn("MUSICTYPE","Gener")
grid!.addColumn("MUSICTYPE","Genre")

rem it is important to set the data before creating the groups , otherwise the column types will ignored
grid!.setData(rs! , 0 , 0)
Expand Down
2 changes: 1 addition & 1 deletion demo/ColumnsUpdateDemo.bbj
Expand Up @@ -88,7 +88,7 @@ rem */
onGroupByMusicType:
group! = new BBjVector()
group!.addItem("MUSICTYPE")
grid!.addColumnGroup("Gener" , "Gener", group!)
grid!.addColumnGroup("Genre" , "Genre", group!)
grid!.updateColumns()
return

Expand Down

0 comments on commit 46be4f4

Please sign in to comment.