if jsonParam['includeEmpty'] != None:
    filter.IncludeEmpty = jsonParam['includeEmpty']
if jsonParam['value'] != None:
    filter.UncheckAll()
    dataType = dataTable.Columns[jsonParam['column']].RowValues.DataType
    for val in jsonParam['value']:
        filter.Check(getCastValue(val, dataType))
