how to enable filter in Data table with filter widget?

Jaydee1
Tera Guru

Hi All,

I have created sp_instance_table record for "data table with filter widget" and have given the table as change request but the filter is not enable on the page. How can we do that?

Thanks,

Jaydee

1 ACCEPTED SOLUTION

Vaishnavi20
Tera Expert

Hi @Jaydee1 ,

Can you please elaborate the requirement?

If you want to show the filter on portal side, then go to that page 'cntrl+right' click on the list view then you will see the option like instance options, page in designer etc. Choose 'Instance in Page Editor' option and add below format into 'Additional options, JSON format'

{
"use_instance_title": {
"value": "true",
"displayValue": "true"
},
"enable_filter": {
"value": "true",
"displayValue": "true"
}
}

 

Thanks

View solution in original post

2 REPLIES 2

Gopi Naik1
Kilo Sage

Hi @Jaydee1 ,

Could please elaborate your requirement? 

If you want to show that filter on list, add below code on "Additional options, JSON format" under "Misc" section.

{

"show_breadcrumbs":{

"value":true;

}

}

Thanks,

Gopi

If my solutions helps you to resolve the issue, Please accept solution and Hit "Helpful".

Thanks,
Gopi

Vaishnavi20
Tera Expert

Hi @Jaydee1 ,

Can you please elaborate the requirement?

If you want to show the filter on portal side, then go to that page 'cntrl+right' click on the list view then you will see the option like instance options, page in designer etc. Choose 'Instance in Page Editor' option and add below format into 'Additional options, JSON format'

{
"use_instance_title": {
"value": "true",
"displayValue": "true"
},
"enable_filter": {
"value": "true",
"displayValue": "true"
}
}

 

Thanks