| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 6 months |
| seen | May 9 at 6:43 | |
| stats | profile views | 20 |
|
Nov 23 |
awarded | Yearling |
|
Nov 19 |
accepted | Cross Browser Rich Text Editor Control |
|
Oct 24 |
comment |
Proper way to get all lists of a certain type from an entire site collection regardless of current location @PirateEric I'm bypassing the SharePoint UI entirely because it's terrible for end users to interact with a content query. I'm asking a specific question about the code at this point for a good reason. |
|
Oct 23 |
comment |
Proper way to get all lists of a certain type from an entire site collection regardless of current location @DaveWise Once I find the list, I need to get the ParentWeb Guid, and the List Guid to access the list directly in the future to provide the feed. |
|
Oct 23 |
comment |
Proper way to get all lists of a certain type from an entire site collection regardless of current location @PirateEric Content quiry doesn't work. We're presenting the results in a custom UI. |
|
Oct 23 |
asked | Proper way to get all lists of a certain type from an entire site collection regardless of current location |
|
Oct 16 |
comment |
How to use People Picker and True Rich Text, cross browser Never knew about PeopleEditor! Thanks. I wanted to stay away from JQuery, but it beats trying to embed and dual-deploy a Telerik control or something of the like. |
|
Oct 16 |
accepted | How to use People Picker and True Rich Text, cross browser |
|
Oct 16 |
asked | How to use People Picker and True Rich Text, cross browser |
|
Oct 16 |
accepted | Correct way to use the people picker and Rich Text |
|
Oct 15 |
comment |
Correct way to use the people picker and Rich Text Is this deployable? It's going inside a Site Definition, so the GUID's being used may not be constant. |
|
Oct 15 |
asked | Correct way to use the people picker and Rich Text |
|
Oct 15 |
accepted | Safely return all lists in site collection that match criteria |
|
Oct 15 |
comment |
Safely return all lists in site collection that match criteria Read the last line. I'm failing ONE line later (so close). I'm having trouble, because (for example) if the webapplication is http://rootsite, then http://rootsite/my is part of the webapplication.sites, and the user may have no access there, and any attempt to read any data from the SPSite object will yield an exception. Strangely, it lets me get the AllWebs object, but any attempt to read from it will yield an exception. I need to determine if the user has access to the SPSite object, but not one on earth seems to know how to make SPSite.DoesUserHavePermissions() work |
|
Oct 15 |
comment |
Safely return all lists in site collection that match criteria Thanks! Very close here, I think. I don't want to get the list items, only the names of the list. Once a user selects a list I will query it directly. I'm having trouble, because (for example) if the webapplication is http://rootsite, then http://rootsite/my is part of the webapplication.sites, and the user may have no access there, and any attempt to read any data from the SPSite object will yield an exception. |
|
Oct 15 |
revised |
Safely return all lists in site collection that match criteria added 65 characters in body |
|
Oct 15 |
comment |
Safely return all lists in site collection that match criteria Thanks! I should have mentioned the exception is firing in the foreach (SPWeb oWebsite in collWebs) line. This would work great if I could enter into that loop and evaluate each web independently. |
|
Oct 15 |
comment |
Safely return all lists in site collection that match criteria Right, which gets us back to the question at hand. How does one do that without accessing the list iteself? All my attempts so far will generate an exception. |
|
Oct 15 |
comment |
Safely return all lists in site collection that match criteria But this will return lists that the user doesn't have access to. I want to maintain security, just not at the expense of application stability. |
|
Oct 15 |
asked | Safely return all lists in site collection that match criteria |