User ROXORITY - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:18:14Z http://stackoverflow.com/feeds/user/89472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882124/hiding-a-sharepoint-custom-field-type-in-edit-and-create-mode/882188#882188 1 Answer by ROXORITY for Hiding a SharePoint Custom Field Type in Edit and Create mode ROXORITY 2009-05-19T11:30:31Z 2009-05-19T11:30:31Z <p>Generally you set the SPField.ReadOnlyField property to True to achieve the desired behaviour for any field. (Don't forget to SPField.Update accordingly!) There is an equivalent CAML attribute for list definitions, I believe.</p> <p>That said, in your control class deriving from BaseFieldControl, you might just override the RenderFieldForInput() method and not call the base implementation to ensure nothing is rendered during Create or Edit. However, this would still render the field's table row in the form, which is probably not what you want. So to enforce the desired behaviour, use ReadOnlyField and override Update() in your SPField (not field control) class to always have it set to True.</p> http://stackoverflow.com/questions/793360/adding-fields-to-the-list-forms-sharepoint/793794#793794 1 Answer by ROXORITY for Adding fields to the List Forms - Sharepoint ROXORITY 2009-04-27T14:37:43Z 2009-04-27T14:37:43Z <p>It doesn't count as "development", but wouldn't creating a new List column, Site Column or Content Type add this additional field to all your list forms just fine? How does this not work in your particular case?</p> http://stackoverflow.com/questions/792938/scope-of-a-timer-job-feature/793008#793008 2 Answer by ROXORITY for Scope of a timer job feature ROXORITY 2009-04-27T10:35:59Z 2009-04-27T11:50:15Z <p>It depends entirely on your scenario. The timer jobs I've written so far I have scoped by web application (it's just a matter of modifying your feature.xml). However, depending on what your timer job does, it might make sense from a user perspective to have it web or site scoped. You'd only need to make your feature receiver aware of the 'parent' that's passed in the Activated etc. notification handlers -- it will be the SPWeb, SPSite or SPWebApplication that the feature was activated on -- and you could save yourself writing a configuration interface just to have users set which webs your timer job should work with, and which not. Technically you're correct: they always run on the web application level. But since they often work with content that's web or site related, scoping this way might be a useful way to limit the, well, scope of the timer job.</p> http://stackoverflow.com/questions/773369/how-to-deploy-an-assembly-using-the-team-definition-in-sharepoint/773722#773722 0 Answer by ROXORITY for How to deploy an assembly using the Team Definition in Sharepoint? ROXORITY 2009-04-21T17:37:11Z 2009-04-21T17:37:11Z <p>If there's any SharePoint-relevant code (web part, event receiver etc) in your project, the assembly will be packaged up in the resulting WSP and your solution manifest will already have an instruction to put it into the GAC. Any particular reason you need it in the bin rather than the GAC? It can be done -- read up the documentation on the Solution Manifest XML format -- but requires manipulating the solution manifest from WSP View manually, and might require re-creating the WSP with WspBuilder.</p> http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/769013#769013 0 Answer by ROXORITY for Combining different lists data and showing it in a webpart ROXORITY 2009-04-20T16:24:11Z 2009-04-20T16:24:11Z <p>If you don't want to code, I guess the Google term to use for pre-built solutions is "SharePoint list roll-up".</p> http://stackoverflow.com/questions/728644/vsewss-problems-when-creating-a-new-base-class-which-inherits-from-spitemeventrec/745421#745421 0 Answer by ROXORITY for VSeWSS problems when creating a new base class which inherits from SPItemEventReceiver ROXORITY 2009-04-13T21:10:20Z 2009-04-13T21:10:20Z <p>For experimental purposes: does the error occur without the base class being abstract?</p> http://stackoverflow.com/questions/745059/filtering-sharepoint-lists-on-a-now-or-today/745383#745383 2 Answer by ROXORITY for Filtering Sharepoint Lists on a "Now" or "Today" ROXORITY 2009-04-13T20:59:35Z 2009-04-13T20:59:35Z <p>Have you tried this: create a Computed column, called 'Expiry', with a formula that amounts to '[Created] + 7 days'. Then use the computed column in your View's filter. Let us know whether this worked or what problems this poses!</p> http://stackoverflow.com/questions/742002/sharepoint-import-version-error/742060#742060 1 Answer by ROXORITY for Sharepoint import version error ROXORITY 2009-04-12T17:06:38Z 2009-04-12T17:06:38Z <p>Maybe there's a better way, but here's what I would just do because it can be done in the background, simultaneously to doing other stuff...</p> <p>OK, both are version 12, so that would probably be just a diff in Service Pack levels / hotfixes etc. Set up your clean SP environment anew, without any service packs, updates, patches etc. Check the version number. If lower than your export, gradually perform updates until the version number is just identical. Import, and only after testing your imported content optionally apply other updates as you see fit.</p> http://stackoverflow.com/questions/738056/sharepoint-wss-workflow-failed-on-start-error/741912#741912 0 Answer by ROXORITY for sharepoint WSS workflow - "failed on start" error ROXORITY 2009-04-12T15:02:00Z 2009-04-12T15:02:00Z <p>Tricky. At this point my guess is that your best bet is to open your workflow files, which you can access from SharePoint Designer (open your original/root/template web in it).</p> <p>Once you've located the workflow files, instead of opening them in the visual designer, try opening them in Notepad so you see the XML source code. Don't mess with it right now, but this way you should be able to find the rules and activities "13" and "21" that fail in template-exported webs. Look for ID13, __Rule_ID13, ID21 and __Rule_ID21. The idea here is to find out which two of your activity/condition pairs fail. Once you know which they are, you can:</p> <ul> <li>let us know</li> <li>try to export the web without these activity/condition pairs (or temporarily replace them with dummy ones that WON'T fail)</li> <li>take a closer look at them: could there be any reason for them to not work in a web other than the original one?</li> </ul> <p>Don't think there is an easy answer. SharePoint Designer workflows in general, particular in a WSS-only environment, certainly do have their limitations and glitches.</p> http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/740430#740430 1 Answer by ROXORITY for Deploying Layouts in SharePoint ROXORITY 2009-04-11T17:03:29Z 2009-04-11T17:03:29Z <p>Since you are using VSeWSS, you can execute your own code upon feature activation. So try writing an SPFeatureReceiver that will call SPWeb.RevertAllDocumentContentStreams() to reghost directly after feature activation on the web(s) in question.</p> <p>If this doesn't work, then the problem isn't about ghosting, maybe it's about Orphans then. But try this first.</p> http://stackoverflow.com/questions/882124/hiding-a-sharepoint-custom-field-type-in-edit-and-create-mode/885018#885018 Comment by ROXORITY on Hiding a SharePoint Custom Field Type in Edit and Create mode ROXORITY 2009-05-19T23:01:39Z 2009-05-19T23:01:39Z Wouldn't this also hide the field on display forms, which is not wanted? I can only re-emphasize ShowInEditForm and ShowInNewForm with regard to the OQ ;) http://stackoverflow.com/questions/882124/hiding-a-sharepoint-custom-field-type-in-edit-and-create-mode/882188#882188 Comment by ROXORITY on Hiding a SharePoint Custom Field Type in Edit and Create mode ROXORITY 2009-05-19T12:41:32Z 2009-05-19T12:41:32Z Got it working? http://stackoverflow.com/questions/882124/hiding-a-sharepoint-custom-field-type-in-edit-and-create-mode/882188#882188 Comment by ROXORITY on Hiding a SharePoint Custom Field Type in Edit and Create mode ROXORITY 2009-05-19T12:13:09Z 2009-05-19T12:13:09Z By the way, it might be better to set the ShowInEditForm and ShowInNewForm properties -- I recall sometimes ReadOnlyFields could not be edited from the List Settings page! http://stackoverflow.com/questions/882124/hiding-a-sharepoint-custom-field-type-in-edit-and-create-mode/882188#882188 Comment by ROXORITY on Hiding a SharePoint Custom Field Type in Edit and Create mode ROXORITY 2009-05-19T12:09:42Z 2009-05-19T12:09:42Z Try just setting the property in all your constructors, completely ignoring Update() calls or overrides. (Don't Update() in your constructor for sure!) http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/638248#638248 Comment by ROXORITY on What are your biggest complaints about Sharepoint? ROXORITY 2009-04-18T20:22:34Z 2009-04-18T20:22:34Z There <i>is</i> some OOB way to get wildcard search working without third-party or coding but agreed, it should be in there by default... http://stackoverflow.com/questions/745059/filtering-sharepoint-lists-on-a-now-or-today/745383#745383 Comment by ROXORITY on Filtering Sharepoint Lists on a "Now" or "Today" ROXORITY 2009-04-13T21:05:47Z 2009-04-13T21:05:47Z The idea here is that using [Today] in View filters usually works, compared to having a pseudo column that 'stored' always the current time. So you can instead have your computed column, as described above, and compare that to Today in your View's filtering. http://stackoverflow.com/questions/727271/deploying-layouts-in-sharepoint/740430#740430 Comment by ROXORITY on Deploying Layouts in SharePoint ROXORITY 2009-04-11T22:14:11Z 2009-04-11T22:14:11Z and let us know whether this worked! :)