ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: How do I pass the content of a text Input to a Blox filter? Rather in Widget Scripts, I think we can move the scripts to customAction and use it. Re: How do I pass the content of a text Input to a Blox filter? Hi Iris, Below is the widget level script (which need to be added in Blox widget scripts). widget.on('ready', function(w){ $('#textVal').blur(function(){ var applyJaql = { 'jaql':{ "table": "TableeName", "column": "TableName.ColumnName", "dim": "[TableName.ColumnName]", "datatype": "text", "title": "Your Search Term", "filter": { "multiSelection": false, 'members': [$(this).val()], 'explicit': true } }, 'instanceid': 'filterInstanceID' }; prism.activeDashboard.filters.update(applyJaql,filterOptions); prism.activeDashboard.refresh(); }); }); filterInstanceID - In the dashboard console type below line, in the console we will have the list of filters on the dashboard with instanceID prism.activeDashboard.filters.$$items Hope the above solution works for your need. Thanks, Dev