Home › Forums › QuickApps Forum › List Settings for qListView
- This topic is empty.
- AuthorPosts
-
- 06/25/2012 at 10:38 am #4934
AnonymousParticipantHi Kate,
That occurs when you delete the OOB web part. If you hide it it works ok.
If you deleted it then the quickest way to have it back is to recreate the list. There are other ways but this worked for me.
- 06/25/2012 at 12:51 pm #6124
AnonymousParticipantHi ,
hmm… it does not work for me even if the OOB web part opened on the page
Thanks,
Kate
- 06/26/2012 at 8:59 am #6126
AnonymousParticipantHI ,
There is no List Tools tab on the last screenshot…. hence I'm not able to go to the list settings.
Thanks,
Kate
- 06/26/2012 at 9:00 am #6125
AnonymousParticipantHi Kate,
From the above screenshot I see that everything is ok.
Also you need to check your SharePoint permissions on that list.
- 06/29/2012 at 10:26 am #6127
AnonymousParticipantHi Kate,
Are you trying to configure qListView to a Discussion Board or is it a custom list? If this issue is related to subcase 1044340-1, and the list is a discussion board, then this type of list is not yet supported by qListView.
Yuan
- 11/05/2012 at 1:51 am #6128
AnonymousParticipantI am interested in a resolution to this. I have changed out the default list view web part (kept it hidden on the page) in favor of the qlistview and everyone with designer privileges is asking where the list settings option is? Any ideas on how to fix this?
The right hand side of the image shows the view of the list without qlistview wb. The one on the left has a qlistview wb. What happened to the list tools?
thanks,
- 11/05/2012 at 2:21 am #6129
AnonymousParticipantHi ,
This is what I responded to Kate (see above). Also check out Yuan's response.
Please let me know how it goes.
That occurs when you delete the OOB web part. If you hide it it works ok.
If you deleted it then the quickest way to have it back is to recreate the list. There are other ways but this worked for me.
- 11/05/2012 at 2:34 am #4364
AnonymousParticipantHi,
I’ve replaced OOB ListView web part with qListView.
Now when I open my list, it does not have List Tools (Items and List settings). How do I bring the SharePoint list settings back?
qListView:
OOB List view:
Thanks,
Kate
- 11/05/2012 at 2:34 am #6130
AnonymousParticipantthe problem is that with the oob wp hidden – once a newbie hits this page (when compared to other pages) – they have to click on browse to make the list tools "appear". I think that is the concern/question. I tried to add something in script to enable the list tools w/out clicking browse – but it didn't work either – just wondering if anyone has discovered a different method. Here is what I tried in a CEWP
method 1:
<script>
//Set focus on our list web part make sure the WPQ# is correct
var webPart = document.getElementById('WebPartWPQ1');
WpClick({target: webPart});//Prevent it from losing focus
SP.Ribbon.WebPartComponent.$3_1.deselectWebPartAndZone = function() { };
</script>method 2:
<script>
//make sure the WPQ# is correctsetTimeout(function() {
var elem = document.getElementById("MSOZoneCell_WebPartWPQ2");
if(elem != null) {
var dummyevent = new Array();
dummyevent["target"] = elem;
dummyevent["srcElement"] = elem;
WpClick(dummyevent);
}
}, 2000);
</script>
-
- AuthorPosts
You must be logged in to reply to this topic.