ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Table Widget - Horizontal scroll Thank you for your answer TriAnthony ! The code worked now, but the second table took a while to receive the update, and when I switch screens, it disappears. First table: Second table: it has disappeared when switching the screen. When I switch to the initial screen (which is smaller), the scrollbar appears on both tables, but it is too long to the table size – making it practically unusable. Table Widget - Horizontal scroll I’ve been trying to make the scrollbar always visible on the Table widget. I followed the code suggestions from this post, but after implementing the code, I don’t see any change in the widget. Is there any other solution to make the scrollbar visible all the time on the Table widget? Thanks in advance! SolvedRe: Creating 'From-To' Date using BloX Hi intapiuser , Thank you so much for sharing. I have tried this in my dashboard but is not working. Made the following modifications since the column name is Days in DATE. Appreciate any help. { "card": { "style": "", "script": "", "title": "", "showCarousel": true, "body": [ { "type": "Container", "width": "90%", "style": { "margin": "0 auto" }, "items": [ { "spacing": "large", "type": "TextBlock", "text": "From Date", "weight": "light", "color": "black" }, { "type": "Input.Date", "id": "data.filters[0].filterJaql.from", "placeholder": "mm/dd/yyyy", "defaultValue": "", "style": { "width": "100%" }, "borderRadius": "4px", "borderStyle": "none", "backgroundColor": "#F4F4F8" }, { "spacing": "medium", "type": "TextBlock", "text": "To Date", "color": "black" }, { "type": "Input.Date", "id": "data.filters[0].filterJaql.to", "placeholder": "mm/dd/yyyy", "defaultValue": "", "style": { "width": "100%" }, "borderRadius": "4px", "borderStyle": "none", "backgroundColor": "#F4F4F8" }, { "type": "ActionSet", "actions": [ { "type": "Filters", "title": "Submit", "data": { "filters": [ { "filterName": "Days in DATE", "filterJaql": { "from": "01/01/2023", "to": "07/31/2023", "custom": true } } ] } } ] } ] } ] }}