incendio Well-Known Member Licensed User Longtime User Mar 28, 2014 #1 Hi guys, I am using DBUtils to load SQLite data and display it into WebView, here is the code B4X: WebView1.LoadHtml(DBUtils.ExecuteHtml(SQLDb, Query, Null, 0, True)) When scrolling in Webview, the title could disappear, is it possible to set title always visible in first row? Thanks.
Hi guys, I am using DBUtils to load SQLite data and display it into WebView, here is the code B4X: WebView1.LoadHtml(DBUtils.ExecuteHtml(SQLDb, Query, Null, 0, True)) When scrolling in Webview, the title could disappear, is it possible to set title always visible in first row? Thanks.
barx Well-Known Member Licensed User Longtime User Mar 28, 2014 #2 It is something that would need to be done the CSS code. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Mar 28, 2014 #3 I did try to make the table header fixed by changing the html / css. The result was not so good. Consider using TableView instead: http://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/#content Upvote 0
I did try to make the table header fixed by changing the html / css. The result was not so good. Consider using TableView instead: http://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/#content
incendio Well-Known Member Licensed User Longtime User Mar 28, 2014 #4 Erel said: I did try to make the table header fixed by changing the html / css. The result was not so good. Consider using TableView instead: http://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/#content Click to expand... Thanks for your replied, it worked good. Upvote 0
Erel said: I did try to make the table header fixed by changing the html / css. The result was not so good. Consider using TableView instead: http://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/#content Click to expand... Thanks for your replied, it worked good.