- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2023 12:17 AM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2023 03:06 AM - edited ‎03-17-2023 03:16 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2023 01:57 AM
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
Thanks,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2023 03:06 AM - edited ‎03-17-2023 03:16 AM
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