Tayfur Well-Known Member Licensed User Longtime User Nov 6, 2018 #1 Helloo I tried a lot of things; But i cant solve it. how can i change TableView inline/cell border color and thickness?
Helloo I tried a lot of things; But i cant solve it. how can i change TableView inline/cell border color and thickness?
Erel B4X founder Staff member Licensed User Longtime User Nov 6, 2018 #2 Create a css file named table.css with: B4X: .table-cell{ -fx-border-color: green; -fx-border-width: 2px; } Load it with: B4X: MainForm.Stylesheets.Add(File.GetUri(File.DirAssets, "table.css")) Upvote 0
Create a css file named table.css with: B4X: .table-cell{ -fx-border-color: green; -fx-border-width: 2px; } Load it with: B4X: MainForm.Stylesheets.Add(File.GetUri(File.DirAssets, "table.css"))
Tayfur Well-Known Member Licensed User Longtime User Nov 7, 2018 #3 Erel said: Create a css file named table.css with: B4X: .table-cell{ -fx-border-color: green; -fx-border-width: 2px; } Load it with: B4X: MainForm.Stylesheets.Add(File.GetUri(File.DirAssets, "table.css")) Click to expand... yes; yes... Thank you for support. Upvote 0
Erel said: Create a css file named table.css with: B4X: .table-cell{ -fx-border-color: green; -fx-border-width: 2px; } Load it with: B4X: MainForm.Stylesheets.Add(File.GetUri(File.DirAssets, "table.css")) Click to expand... yes; yes... Thank you for support.