User Abs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:34:34Z http://stackoverflow.com/feeds/user/1245 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1772147/asp-net-mvc-application-in-sharepoint-2007-virtual-directory/1785206#1785206 1 Answer by Abs for ASP.NET MVC Application in Sharepoint 2007 virtual directory. Abs 2009-11-23T18:54:57Z 2009-11-23T18:54:57Z <p>I set up a couple of WebForms apps to run in much the same way you say that you want: a separate virtual application with its own web.config, etc. I had to tweak the web.config to make it work, though. My app uses things like session state and view state, but I reckon those aren't applicable to your MVC app. As I look at my web.confing, I think this section might be applicable for what you're trying to do: </p> <pre><code>&lt;location&gt; &lt;system.web&gt; &lt;xhtmlConformance mode="Legacy" /&gt; &lt;trust level="Full" /&gt; &lt;httpModules&gt; &lt;remove name="PublishingHttpModule" /&gt; &lt;/httpModules&gt; &lt;/system.web&gt; &lt;/location&gt; </code></pre> <p>Hope that helps. I also have an <code>&lt;authorization&gt;</code> section in there, but it wasn't necessary to make the app work.</p> http://stackoverflow.com/questions/1378553/sharepoint-copy-a-list-to-a-different-web/1381578#1381578 2 Answer by Abs for sharepoint copy a list to a different web Abs 2009-09-04T21:16:41Z 2009-09-04T21:16:41Z <p>You can also do this with Gary <a href="http://stsadm.blogspot.com/2007/08/stsadm-commands%5F09.html" rel="nofollow">LaPointe's stsadm extensions</a>. They're pretty sweet. Specifically, look into the <a href="http://stsadm.blogspot.com/2007/09/importexportcopy-lists.html" rel="nofollow"><code>gl-copylist</code> command</a>. </p> http://stackoverflow.com/questions/1260784/is-it-possible-to-use-custom-data-types-for-moss-user-profile-properties 0 Is it possible to use custom data types for MOSS user profile properties? Abs 2009-08-11T14:37:38Z 2009-08-11T22:51:52Z <p>We're wanting to add some properties to our MOSS user profiles and expose them to the people search. However, some of the data are more complex than just a string or choice or whatever. I've been looking around, and I can't seem to figure out if it's possible to create custom data types for use with the user profiles. Does anyone know if this is possible, and, if so, how to go about it?</p> <p>More specifically, we'd like to add education data for our people. We kind of envision one education entry as including the degree / course of study, concentration / major, year, and institution. We'd also like for each user to be able to have multiple entries. It seems to me that, in an ideal, world, we'd be able to create a custom field control to handle the editing. Again, does anyone know if that sort of thing is possible?</p> <p>Thanks a lot for any light you can shed on this subject.</p> http://stackoverflow.com/questions/698556/to-create-an-employee-directory/1239597#1239597 0 Answer by Abs for To Create an Employee directory Abs 2009-08-06T15:14:31Z 2009-08-06T15:14:31Z <p>We use the people search for this pretty effectively. We populate data in AD, then connect profile properties to AD attributes. That's only if you have MOSS, though. If you're working with WSS, you'll have to build something more custom. </p> <p>One gotcha, though, is that the People Search out of the box doesn't easily do partial searches (i.e. searching for "john" doesn't match "johnson"). That's a big downer in my mind. You can use Ramon Scott's <a href="http://www.ramonscott.com/wordpress/?p=8" rel="nofollow">approach</a> of a Content Editor Webpart with a form and some Javascript to work around it, and you can also get there via the advanced search box (albeit indirectly), but it sure would be nice if it were easy to make the default search box do partial name searches. </p> http://stackoverflow.com/questions/470135/how-do-i-marshal-cstring-via-p-invoke 0 How do I marshal cstring* via P/Invoke? Abs 2009-01-22T17:41:10Z 2009-07-01T23:11:17Z <p>I'm attempting to call a 3rd-party DLL from C#, and I'm having trouble marshalling some string data. The DLL was written with Clarion, and I'm not very familiar with the data types being used. Specifically, the spec has this signature for a function that I can't get to work: </p> <pre><code>Bool QuerySoftwareVersion( cstring* version) // edited documentation typo //Returns Software version (20 character cstring). </code></pre> <p>I was assuming that the cstring was just a null-terminated string, but I wasn't able to get it to work with <code>out char[] version</code> in my definition. Anyone know the right way to handle this?</p> <p>EDIT: Actually, what I've found thus far suggests that a cstring in Clarion is indeed just a null-terminated string.</p> <p>UPDATE: I've updated the title of the question and the details because it turns out that there was a typo in the DLL documentation. The <code>version</code> parameter in question is declared as type <code>cstring*</code> not <code>cstringt*. And in Clarion, </code>cstring` is apparently just a c-style, null-terminated string. So the marshalling shouldn't be that complicated, since they claim it was written with C calling conventions. Has anyone successfully p/invoked a Clarion DLL that passes strings via a reference param?</p> http://stackoverflow.com/questions/1046262/have-a-webpart-hide-its-self-if-the-user-doesnt-have-proper-permission/1049619#1049619 0 Answer by Abs for Have a webpart hide its self, if the user doesn't have proper permission Abs 2009-06-26T15:04:40Z 2009-06-26T15:04:40Z <p>You could definitely do your permissions check within your custom WebPart's <code>Render()</code> method. If the user doesn't have the permissions, just don't render anything.</p> http://stackoverflow.com/questions/956135/how-can-i-change-the-paragraph-formatting-in-the-sharepoint-richhtmlfield/956325#956325 2 Answer by Abs for How can I change the paragraph formatting in the SharePoint RichHtmlField Abs 2009-06-05T14:55:23Z 2009-06-05T14:55:23Z <p>Is this a MOSS or WSS site collection that we're talking about? If it's MOSS you can just apply an alternate style sheet that will override the default styling. We put it in a folder in the Style Library in the root of the site collection and specified the the URL to be <code>/Style Library/custom/ourStyles.css</code>. </p> <p>To get to that setting, from the root of the site collection, go to <code>Site Actions-&gt;Site Settings-&gt;Modify All Site Settings</code>, then click the <code>Master Page</code> link under the <code>Look and Feel</code> column. The setting you're looking for is at the bottom of the page. </p> <p>The one gotcha we ran into this approach is that we had to edit the Style Library's permissions so that all users had read access. Otherwise, they didn't see the custom styles, even though those of us who were editing them did. </p> <p>You can use the same sort of approach with WSS, but it's not as easy to do. You can use the object model to apply an alternate style sheet URL, but I believe you have to touch each different site with your code to do so. You could do it with a PowerShell script or other program, but the idea is the same, you have to loop through the sites, something like this: </p> <pre><code>SPSite theCollection = new SPSite("http://sitecollectionUrl"); foreach (SPWeb aWeb in theCollection.AllWebs) { aWeb.AlternateCssUrl = "path to custom style sheet"; aWeb.Update(); aWeb.Dispose(); } theCollection.Dispose(); </code></pre> http://stackoverflow.com/questions/955899/sharepoint-permissions/956239#956239 2 Answer by Abs for Sharepoint - Permissions? Abs 2009-06-05T14:40:11Z 2009-06-05T14:40:11Z <p>Couldn't this also have more to do with the permission to manage the group rather than permission to use the web service? I know I've run into similar situations via the UI before, and it turned out that I didn't have permissions to edit the group's membership. I believe there are a few situations in which you have permission to edit a group's membership:</p> <ul> <li>You are the creator of the group </li> <li>The creator of the group (or a site collection administrator) designated you as an owner of the group </li> <li>The group was configured to allow all group members to edit its membership, and you are a member of the group</li> <li>You are a site collection administrator </li> </ul> <p>Is it possible that none of those conditions fit for you?</p> http://stackoverflow.com/questions/884217/taking-pages-out-of-the-sharepoint-url/884438#884438 1 Answer by Abs for Taking /Pages out of the SharePoint URL? Abs 2009-05-19T18:56:24Z 2009-05-19T18:56:24Z <p>I know ASP.NET 3.5 SP1 has the URL routing engine that ASP.NET MVC uses built in. If you wanted to run against that version of the .NET framework, you could use routes to eliminate the /Pages part of the URL. But I'm not positive about running MOSS on that version of .NET. That's the first place I'd check, though.</p> http://stackoverflow.com/questions/869977/webparttitleid-differences-between-asp-net-webparts-and-sharepoint-webparts/870108#870108 0 Answer by Abs for WebPartTitleID differences between ASP.NET webparts and Sharepoint webparts Abs 2009-05-15T18:09:59Z 2009-05-15T18:09:59Z <p>As far as I know, there's no way to control these auto-generated web part ID's. If you need to style them, the best thing I've been able to do is wrap everything is a div with a custom ID or class.</p> http://stackoverflow.com/questions/852004/stsadm-export-hangs-after-sometime/852874#852874 0 Answer by Abs for Stsadm export hangs after sometime Abs 2009-05-12T13:46:46Z 2009-05-12T13:46:46Z <p>Perhaps the list item causing the problem is the one <em>after</em> it hangs?</p> http://stackoverflow.com/questions/735015/edit-only-owned-list-items-in-windows-sharepoint-services-3-0/834920#834920 0 Answer by Abs for Edit only owned list items in Windows Sharepoint Services 3.0 Abs 2009-05-07T14:20:21Z 2009-05-07T14:20:21Z <p>WSS has a basic UI for setting item-level permission on list items, but they hide that from the UI for document libraries. If you go into <code>Settings-&gt;List Settings-&gt;Avanced settings</code> for a list, you'll see the options to do pretty much what you're asking for. However, on document libraries, that UI is not available. The settings it drives, though are avaiable via the object model.</p> <p>You could set those same properties for a document library like this: </p> <pre><code>SPDocumentLibrary onlyOwnLib = theWeb.Lists["DocLibName"] onlyOwnLib.WriteSecurity = 2; onlyOwnLib.Update(); </code></pre> <p>And that should about do it. However, apparently that doesn't really set permissions; it just controls what the user can do via the UI. If they had another interface to the library (like via WebDAV) or list (like via the web services), it wouldn't prevent them from editing items they didn't create. If you want true item-level permissions, I think you need to go the event handler route. </p> <p>This <a href="http://blogs.pointbridge.com/Blogs/morse%5Fmatt/Pages/Post.aspx?%5FID=8" rel="nofollow">post</a> from Matt Morse explains it in more detail, and he even wrote a command line tool to set the property (plus the <code>.ReadSecurity</code> property) for lists and libraries. </p> http://stackoverflow.com/questions/824440/user-profile-import-more-than-on-search-base/825027#825027 1 Answer by Abs for User Profile Import - more than on Search Base Abs 2009-05-05T14:07:09Z 2009-05-05T14:07:09Z <p>You could move the search base up to the level above both OU's, then change your filter so that it only pulls User AD objects with certain fields set. For instance, this filter will get all user objects with both the first name and last name fields set to something: </p> <pre><code>(&amp;(objectCategory=Person)(objectClass=user)(givenName=*)(sn=*)) </code></pre> http://stackoverflow.com/questions/467952/how-to-create-a-dataview-in-sharepoint-with-data-from-a-join-query/799073#799073 0 Answer by Abs for How to create a dataview In Sharepoint with data from a join query? Abs 2009-04-28T17:41:03Z 2009-04-28T17:41:03Z <p>I've done something like this, but I wasn't able to use a dataview. I ended up writing a custom web part to do it. The approach was: </p> <ol> <li>Use an <code>SPQuery</code> object to get an <code>SPListItemCollection</code> for each list. Use the CAML query to restrict the items returned. </li> <li>Use the <code>SPListItemCollection</code> object's <code>GetDataTable()</code> method to retrieve an ADO.NET <code>DataTable</code> object for each list. </li> <li>Add the tables to a <code>DataSet</code> object. </li> <li>Create relationships between the tables. </li> <li>Render the data however you like, using <code>DataList</code> or <code>Repeater</code> or whatever. </li> </ol> <p>Here's some code that shows the broad strokes: </p> <pre><code>protected DataTable GetDataTableFromQuery(string camlQry, SPList theList) { SPQuery listQry = new SPQuery(); listQry.Query = camlQry; SPListItemCollection listItems = theList.GetItems(listQry); return listItems.GetDataTable(); } protected void BuildDataSet() { // get SPList objects for the lists in questions ... left as an exercise for the dev -- call them list1, list2, and list3 string camlQry = "the CAML necessary to retreive the ites from list1"; DataTable table1 = GetDataTable(camlQry, list1); table1.TableName = "Table1"; camlQry = "the CAML necessary to retreive the ites from list2"; DataTable table2 = GetDataTable(camlQry, list2); table1.TableName = "Table2"; camlQry = "the CAML necessary to retreive the ites from list3"; DataTable table3 = GetDataTable(camlQry, list3); table1.TableName = "Table3"; // now build the DataSet DataSet ds = new DataSet(); ds.Tables.Add(table1); ds.Tables.Add(table2); ds.Tables.Add(table3); ds.Relations.Add("Table1_2", ds.Tables["Table1"].Columns["FieldA"], ds.Tables["Table2"].Columns["FieldA"]); ds.Relations.Add("Table2_3", ds.Tables["Table2"].Columns["FieldB"], ds.Tables["Table3"].Columns["FieldB"]); // now you can do something with these, like store them in the web part class and bind them to repeaters in the web part's Render() method } </code></pre> http://stackoverflow.com/questions/780427/visual-studio-2008-add-service-reference-for-sharepoint-401-and-port-numbers/783105#783105 0 Answer by Abs for Visual Studio 2008 "Add Service Reference" for Sharepoint: 401 and port numbers Abs 2009-04-23T19:06:13Z 2009-04-23T19:06:13Z <p>If it's not a question of authtentication types, as Kirk suggested, are your Alternate Access Mappings set up for both port 8888 and port 80?</p> http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/768879#768879 1 Answer by Abs for Combining different lists data and showing it in a webpart Abs 2009-04-20T15:52:08Z 2009-04-21T15:49:40Z <p>I've built web parts to display items from 2 different lists, and I did something similar to what Scott Price suggested. I used an SPQuery object for each list and used it to get DataTable objects that I could then use with things like Repeaters and DataLists. You could merge your two tables and do something similar. </p> <p>The biggest trick for me was setting up the custom templates for DataBinding in a webpart. To do that, I created a custom class that implemented the ITemplate interface and then emitted the HTML for each item from the template class in an event handler. Then, you just create an instance of your template class and set that as the ItemTemplate property of your, say, DataList. </p> <p><a href="http://professionalaspnet.com/archive/2006/06/15/Useing-ITemplate-in-the-Data-Controls.aspx" rel="nofollow">This post</a> and <a href="http://blog.developers.ie/cgreen/archive/2006/01/10/1850.aspx" rel="nofollow">this one</a> do a better job of explaining that approach, but the nice thing is that you have complete control of the markup, and you can style it as you like. </p> http://stackoverflow.com/questions/757519/sharepoint-trying-to-get-value-of-a-task-field-into-a-workflow/757796#757796 0 Answer by Abs for Sharepoint - trying to get value of a task field into a workflow Abs 2009-04-16T19:53:32Z 2009-04-16T19:53:32Z <p>I had similar problems once, and I had to get the field ID to access the field. This is how I did it: </p> <pre><code>Guid isApprovedFieldId = worflowProperties.TaskList.Fields["isApproved"].Id; string approvalStatus = (string)(onTaskChanged1_AfterProperties1.ExtendedProperties[isApprovedFieldId]); </code></pre> http://stackoverflow.com/questions/676155/how-to-access-the-sharepoint-spnavigationnode-quicklaunch-property/677911#677911 0 Answer by Abs for How to access the Sharepoint SPNavigationNode.QuickLaunch Property? Abs 2009-03-24T15:27:29Z 2009-03-24T15:27:29Z <p>I think, by default, the QuickLaunch uses shared navigation. In other words, the QuickLaunch for a subsite doesn't have its own collection of nodes until you do something with it. If you reorder a site, that gives it its own unique set of nodes. </p> <p>If you wanted to programmatically set your QuickLaunch to have its own set of nodes programmatically, you should be able to do so this way: </p> <pre><code>SPNavigation nav = spWeb.Navigation; nav.UseShared = false; spWeb.Update(); </code></pre> <p>I think your count should be something other than zero at that point. </p> http://stackoverflow.com/questions/565771/sharepoint-find-the-sitetemplate-value-of-a-wsp-template/566884#566884 1 Answer by Abs for SharePoint - find the sitetemplate value of a WSP template? Abs 2009-02-19T19:55:09Z 2009-02-19T19:55:09Z <p>I think the easiest way to do this is via PowerShell, but you can write code to do the same thing. The key is to get a reference to the web and then call <code>SPWeb.GetAvailableWebTemplates(lcid)</code>.</p> <p>Here's a few lines of PowerShell script/command to spit the Name and Title properties out on the screen: </p> <pre><code>[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") $theSiteColl = New-Object Microsoft.SharePoint.SPSite("http://server") $theWeb = $theSiteColl.OpenWeb() $theWeb.GetAvailableWebTemplates(1033) | select name, title #put your locale ID in the function call </code></pre> <p>The <code>Name</code> column is the one you have to pass into the <code>stsadm -o createsite</code> command, and the <code>Title</code> column helps associate it with something that makes sense. On my test box, the BugDatabase application template is <code>BT#0</code>.</p> http://stackoverflow.com/questions/491004/sharepoint-moss-deleting-other-peoples-un-checked-in-items-from-a-list/491849#491849 2 Answer by Abs for SharePoint/MOSS - Deleting other people's un-checked-in items from a list Abs 2009-01-29T14:42:27Z 2009-01-29T14:42:27Z <p>If you are a site collection administrator, you can also force a check in of the other person's checked out file. The trick is that you have to know what library it's in. If you know that, you can navigate to that library, then do the following things:</p> <ol> <li>Click on <em>Settings -> Document Library Settings</em> (or <em>List Settings</em>, I suppose)</li> <li>Click on <em>Manage checked out files</em> in the <strong>Permissions and Management</strong> column</li> <li>You should now see a list of checked out files, which you can select, then click on <em>Take Ownership of Selection</em> in the toolbar. </li> <li>Once you've done that, you can check the file in yourself.</li> </ol> http://stackoverflow.com/questions/450915/upload-files-to-sharepoint-document-libraries-via-ftp/450930#450930 3 Answer by Abs for Upload files to Sharepoint document libraries via FTP Abs 2009-01-16T16:08:49Z 2009-01-16T16:08:49Z <p>I don't think so. I think you're options are: </p> <ol> <li>HTTP (via the upload page)</li> <li>WebDAV</li> <li>Web Services</li> <li>The object model</li> </ol> http://stackoverflow.com/questions/417996/share-sharepoint-lists-across-sub-sites/418117#418117 6 Answer by Abs for Share Sharepoint lists across sub sites Abs 2009-01-06T20:55:24Z 2009-01-06T21:18:44Z <p>It depends on what you mean by "see" the master list. </p> <p>If you're writing code to access it, you can do that by getting an <code>SPWeb</code> object for the top level site and using its <code>Lists</code> property. </p> <p>If you just want to display it on a web part page, you can do that with a Content Query Web Part. </p> <p>If you want to use it in other lists somehow, that's a more involved question. You can definitely set up lookup columns to point to lists in other sites, but we've only done that via custom site and list definitions.</p> <p>Also, if you want to reuse some text or HTML from your master list and you're using MOSS, the Reusable Content list in the site collection's top site is useful.</p> http://stackoverflow.com/questions/177929/users-not-showing-up-in-sharepoint-audiences/361075#361075 0 Answer by Abs for Users not showing up in Sharepoint Audiences Abs 2008-12-11T21:42:06Z 2008-12-11T21:42:06Z <p>How many groups is the problem account a member of? I've seen issues in the past where a user was a member of a whole lot of AD groups (like 50 or so). And the .NET code that checked things had a maximum amount of information it would return, or there was a timeout, or something else entirely. Regardless, we did some checking, and the problem account was unnecessarily a member of some of those groups. Cleaning up the membership fixed things. For the record, that was in a regular old ASP.NET app, not SharePoint, but it might be worth looking at.</p> <p>Also, have you deployed SP1 and checked the patches? I know we had some troubles with audience compilation before we applied SP1 (for sure and maybe another hotfix as well, but I"m not sure about the hotfix).</p> http://stackoverflow.com/questions/183950/add-scriptmanager-to-page-programmatically/338496#338496 0 Answer by Abs for Add ScriptManager to Page Programmatically? Abs 2008-12-03T19:54:08Z 2008-12-03T19:54:08Z <p>I've also used the code posted <a href="http://httpcode.com/blogs/PermaLink,guid,7e207243-02a3-4f44-accb-28db981e0f35.aspx" rel="nofollow">here</a> with jQuery in web parts. It works quite nicely, as long as you set up your .js files as embeddable resources and add them to your Assembly.info.cs file.</p> http://stackoverflow.com/questions/334791/sharepoint-web-parts/334909#334909 1 Answer by Abs for SharePoint Web Parts Abs 2008-12-02T18:13:12Z 2008-12-02T18:13:12Z <p>If you don't have to have the custom provider to check permissions, you could just apply SharePoint permissions to the individual items in a list. Then, the list views would be trimmed automatically. Also, if you wanted to write your own web part to display them, you could use a CAML query to retrieve the items, and the results would also automatically be trimmed by the current user's permissions.</p> <p>If you do have to use a custom provider for permissions, I'm not much help. ;-)</p> http://stackoverflow.com/questions/331312/controlling-drop-down-lists-in-windows-sharepoint-services-3-0-form/331435#331435 0 Answer by Abs for Controlling drop down lists in Windows SharePoint Services 3.0 Form Abs 2008-12-01T16:56:34Z 2008-12-01T16:56:34Z <p>The cascading dropdowns issue is a big one. There are some solutions that people have built with custom field controls and/or site columsn. Here's a <a href="http://www.sharepointsnippets.com/post/2008/11/SharePoint-Cascading-Dropdown---Unlimited-siblings.aspx" rel="nofollow">link</a> to a solution that will let you set up multiple levels of parent-child relationships.</p> http://stackoverflow.com/questions/307411/how-do-i-connect-multiple-sortable-lists-to-each-other-in-jquery-ui 1 How do I connect multiple sortable lists to each other in jQuery UI? Abs 2008-11-21T00:32:36Z 2008-11-22T15:51:30Z <p>I'm new to jQuery, and I'm totally struggling with using jQuery UI's <code>sortable</code>. I'm trying to put together a page to facilitate grouping and ordering of items. My page has a list of groups, and each group contains a list of items. I want to allow users to be able to do the following:<br /> 1. Reorder the groups<br /> 2. Reorder the items within the groups<br /> 3. Move the items between the groups </p> <p>The first two requirements are no problem. I'm able to sort them just fine. The problem comes in with the third requirement. I just can't connect those lists to each other. Some code might help. Here's the markup. </p> <pre><code>&lt;ul id="groupsList" class="groupsList"&gt; &lt;li id="group1" class="group"&gt;Group 1 &lt;ul id="groupItems1" class="itemsList"&gt; &lt;li id="item1-1" class="item"&gt;Item 1.1&lt;/li&gt; &lt;li id="item1-2" class="item"&gt;Item 1.2&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li id="group2" class="group"&gt;Group 2 &lt;ul id="groupItems2" class="itemsList"&gt; &lt;li id="item2-1" class="item"&gt;Item 2.1&lt;/li&gt; &lt;li id="item2-2" class="item"&gt;Item 2.2&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li id="group3" class="group"&gt;Group 3 &lt;ul id="groupItems3" class="itemsList"&gt; &lt;li id="item3-1" class="item"&gt;Item 3.1&lt;/li&gt; &lt;li id="item3-2" class="item"&gt;Item 3.2&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I was able to sort the lists by putting <code>$('#groupsList').sortable({});</code> and <code>$('.itemsList').sortable({});</code> in the document ready function. I tried using the <code>connectWith</code> option for <code>sortable</code> to make it work, but I failed spectacularly. What I'd like to do is have the every <code>groupItemsX</code> list connected to every <code>groupItemsX</code> list but itself. How should I do that?</p> http://stackoverflow.com/questions/307411/how-do-i-connect-multiple-sortable-lists-to-each-other-in-jquery-ui/311441#311441 0 Answer by Abs for How do I connect multiple sortable lists to each other in jQuery UI? Abs 2008-11-22T15:42:52Z 2008-11-22T15:51:30Z <p>I was thinking I needed to specifically not connect a list to itself less there be some sort of circular reference. Granted, I'm not working with Excel, but it seemed like that could cause some sort of never ending recursion that would cause a stack overflow or something. Hmm. Sorry for the pun. Couldn't help myself. </p> <p>Anyway, I was trying to do something like this, and it wasn't working: </p> <pre><code>$('.groupsList').sortable(); // worked great $('.groupsList').each( function () { $(this).sortable( { connectWith: ['.groupsList':not('#'+ $(this).attr('id') )]; }); }); </code></pre> <p>I'm sure I've completely mangled the syntax there, and I suppose that's the reason I had to ask the question in the first place. Is it even necessary or helpful performance-wise to filter the current item out of the list?</p> <p>Both of the answers provided by Adam and JimmyP worked in IE (although they behave really oddly in FireFox, overwriting list items when you try to re-sort). I'll accept one of your answers and vote on the other, but if you have ideas/ suggestions about the filtering, I'd like to hear it.</p> http://stackoverflow.com/questions/302279/sharepoint-how-to-programmatically-manage-spfolder-and-splistitem-permissions/302629#302629 2 Answer by Abs for Sharepoint: How to programmatically manage SPFolder and SPListItem permissions Abs 2008-11-19T17:06:48Z 2008-11-19T17:06:48Z <p>You have it pretty much right. I believe that RoleAssignments are indeed the only mechanism for managing permissions directly. Here's a <a href="http://blogs.msdn.com/robgruen/archive/2007/11/15/how-to-programmatically-set-permissions-on-files-folders-in-a-sharepoint-document-library.aspx" rel="nofollow">post</a> that shows a quick example of how to do it. I also used these <a href="http://blogs.msdn.com/pranab/archive/2007/07/04/how-to-set-item-level-permission-for-moss-wss-list-document-library-programmatically.aspx" rel="nofollow">two</a> <a href="http://blogs.msdn.com/pranab/archive/2008/02/14/how-to-set-item-level-permission-for-sharepoint-2007-moss-wss-list-document-library-programmatically-part-2.aspx" rel="nofollow">posts</a> when I did some more complicated things.</p> http://stackoverflow.com/questions/285495/sharepoint-list-items-getdatatable-column-names-not-match-field-names/285590#285590 2 Answer by Abs for SharePoint list.items.GetDataTable column names not match field names Abs 2008-11-12T22:19:41Z 2008-11-12T22:19:41Z <p>The <code>GetDataTable</code> method is returning the <code>internalName</code> (or <code>staticName</code> -- I can't remember for sure which but they are frequently the same) representation of the columns, rather than the <code>Title</code> representation, which is what you see in the Web interface. I believe <code>GetDataTable</code> does a CAML query under the covers, and you have to use that <code>internalName</code> for field references in CAML.</p> <p>This <a href="http://blog.thekid.me.uk/archive/2007/03/12/wss-columns-specify-internal-name.aspx" rel="nofollow">blog</a> talks about it in a little more detail.</p> http://stackoverflow.com/questions/1260784/is-it-possible-to-use-custom-data-types-for-moss-user-profile-properties/1263415#1263415 Comment by Abs on Is it possible to use custom data types for MOSS user profile properties? Abs 2009-08-25T14:23:46Z 2009-08-25T14:23:46Z Wow. Hate to have my dreams shattered by a reference to the API docs. Thanks for turning that up. http://stackoverflow.com/questions/1046262/have-a-webpart-hide-its-self-if-the-user-doesnt-have-proper-permission/1049619#1049619 Comment by Abs on Have a webpart hide its self, if the user doesn't have proper permission Abs 2009-06-27T12:06:36Z 2009-06-27T12:06:36Z That's a valid point, if you display the chrome. I was assuming you'd set the Chrome type to &quot;None.&quot; If you did that, the user wouldn't have to see anything at all. http://stackoverflow.com/questions/1044977/sharepoint-explorer-view/1045325#1045325 Comment by Abs on sharepoint explorer view Abs 2009-06-25T20:08:20Z 2009-06-25T20:08:20Z I think you also have to have some version of Office installed, probably either 2003 or 2007. http://stackoverflow.com/questions/956135/how-can-i-change-the-paragraph-formatting-in-the-sharepoint-richhtmlfield/956325#956325 Comment by Abs on How can I change the paragraph formatting in the SharePoint RichHtmlField Abs 2009-06-07T14:07:06Z 2009-06-07T14:07:06Z I see what you're saying, and no my solution isn't specific to that control. I suppose it could be if there's a unique way of identifying those control with CSS, but I reckon you already thought of that. Beyond that, the only thing I can think of is that it might be possible for you to override the default control with one of your own that has a lower sequence ID (although I haven't checked to see if that will work in this case). This post talks about how to do it: <a href="http://lawo.wordpress.com/2009/02/04/124/" rel="nofollow">lawo.wordpress.com/2009/02/04/124</a>. This one too: <a href="http://msdn.microsoft.com/en-us/library/ms463169.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>. http://stackoverflow.com/questions/470135/how-do-i-marshal-cstring-via-p-invoke/470176#470176 Comment by Abs on How do I marshal cstring* via P/Invoke? Abs 2009-01-22T21:45:22Z 2009-01-22T21:45:22Z This approach gets a value back, but the string is just a few weird characters. Changing the CharSet attribute or MarshalAs type doesn't seem to fix it. http://stackoverflow.com/questions/470135/how-do-i-marshal-cstring-via-p-invoke Comment by Abs on How do I marshal cstring* via P/Invoke? Abs 2009-01-22T20:36:22Z 2009-01-22T20:36:22Z I haven't had any luck finding one so far, but I'll keep looking. http://stackoverflow.com/questions/337781/creating-custom-url-tokens-in-asp-net-a-la-moss/436582#436582 Comment by Abs on Creating custom URL tokens in ASP.NET (a la MOSS) Abs 2009-01-13T14:54:54Z 2009-01-13T14:54:54Z FWIW, both of those links are the same. This is the correct link for SPUtility.GetServerRelativeUrlFromPrefixedUrl(): <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.utilities.sputility.getserverrelativeurlfromprefixedurl.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/317067/sharepoint-custom-dataview-link-rendering-issues/317538#317538 Comment by Abs on SharePoint - Custom Dataview - Link Rendering Issues Abs 2008-11-25T15:26:20Z 2008-11-25T15:26:20Z You don't need rep to accept the answer. http://stackoverflow.com/questions/243799/how-do-you-change-the-address-of-a-document-library/313788#313788 Comment by Abs on How do you change the address of a document library? Abs 2008-11-24T14:53:36Z 2008-11-24T14:53:36Z You can use Gary Lapointe's stsadm extensions, specifically gl-exportlist and gl-import list to move a document library. Here's a link to a list of them: <a href="http://stsadm.blogspot.com/2007/08/stsadm-commands_09.html" rel="nofollow">stsadm.blogspot.com/2007/08/&hellip;</a>. http://stackoverflow.com/questions/307411/how-do-i-connect-multiple-sortable-lists-to-each-other-in-jquery-ui/310508#310508 Comment by Abs on How do I connect multiple sortable lists to each other in jQuery UI? Abs 2008-11-22T15:49:29Z 2008-11-22T15:49:29Z I had put it in brackets, but I was trying to do more. See below. Or my follow-up answer depending on how you have the view. Here: <a href="http://stackoverflow.com/questions/307411/how-do-i-connect-multiple-sortable-lists-to-each-other-in-jquery-ui#311441" rel="nofollow" title="how do i connect multiple sortable lists to each other in jquery ui%23311441">stackoverflow.com/questions/307411/&hellip;</a> http://stackoverflow.com/questions/307411/how-do-i-connect-multiple-sortable-lists-to-each-other-in-jquery-ui/311159#311159 Comment by Abs on How do I connect multiple sortable lists to each other in jQuery UI? Abs 2008-11-22T15:44:24Z 2008-11-22T15:44:24Z This seems to work, but it doesn't seem to follow the bracket syntax the documentation suggests. Maybe those brackets aren't necessary? http://stackoverflow.com/questions/240707/sharepoint-list-subscriptions/240865#240865 Comment by Abs on SharePoint List Subscriptions Abs 2008-10-27T18:05:30Z 2008-10-27T18:05:30Z FWIW, I believe this option is only available to administrators of the site collection.