sharepoint-2007

onChange event doesn't trigger

非 Y 不嫁゛ 提交于 2019-12-17 20:37:01
问题 I use Internet Explorer 8 and Sharepoint 2007. Briefing: I have a NewForm with various fields from a list. I need, using javascript, from one of the fields, to get the value introduced by the user (in a textBox) and paste it on other field (other textBox) in the same page, using onChange. Problem: I'm a JavaScript newbie, and I can't set the event 'onChange' to trigger my function, or at least to trigger an 'alert("Test") ... or simply I'm doing it wrong and don't know why (more likely)...

Use SharePoint Search to crawl Project Server project metadata?

别说谁变了你拦得住时间么 提交于 2019-12-13 20:57:03
问题 Our environment consists of Project Server 2007 and MOSS 2007. We have around 750 projects and lots of "Enterprise Custom Fields" set up to track all of the metadata associated with a project. Our main requirement is to be able to search/filter/group/sort all of these projects by metadata in SharePoint. Our current process involves syncing this custom metadata into a SharePoint list (which requires a LOT of maintenance). Instead, I would like to get rid of this sync and set up the search

Sharepoint: Access SQL sharepoint files

落爺英雄遲暮 提交于 2019-12-13 20:06:09
问题 I have the Sharepoint Intranet server on the same nework as the Internet PHP Web server. I would like to know if via PHP SQL code I can access a collection list of PDF files from the intranet so it can be viewed on the Internet site. 回答1: SharePoint exposes a Lists web service to access List Items from a SharePoint List/Document Library. You should be able to use this to grab document URLs and get that as a byte array or something, which you could serve up in your PHP application. I'm not

Adding a Content Type to all Document Libraries

Deadly 提交于 2019-12-13 08:37:57
问题 We have hundreds of document libraries, spread all throughout various site collections in a MOSS 2007 SharePoint site. The problem is, that I want to add Content Type to show up in addition to the "New Document" and "New Folder" content types: the "Link to a Document" content type (0x01010A). This new content type should should up for all existing and new document libraries. What I've tried: I thought that I would be able to add the following to a schema.xml somewhere inside the <ContentTypes

Sharepoint 2007: User name changed in ActiveDirectory. Old name still shown at top right of portal page

吃可爱长大的小学妹 提交于 2019-12-13 07:29:04
问题 I now have 2 users whose names are not correctly displayed in the 'welcome' menu at the top right of the page. The first user married and her surname changed. The new name was entered in ActiveDirectory but her maiden name is still displayed. In the second case, a LAN id was reallocated to a new department member. The name of the previous user is displayed in the portal. The AD synchronising appears to be running every night and I can see no errors there. The AD entries for the 2 users

Removing column name from SharePoint RSS feed

…衆ロ難τιáo~ 提交于 2019-12-13 04:21:27
问题 I have a SharePoint 2007 site the exposes RSS feeds to a static HTML page. The static page will aggregate and display them via jQuery AJAX. The problem is that SharePoint includes the name and value of the columns in the body of the feed (go to link and search for body ) which makes my page look like this: Note the Body: after the date and before the description. I don't want that there column names in the feed. How do I tell SharePoint to exclude the column names? Here is a section of the

How to call GetChanges() method from SiteData.asmx web service (SharePoint 2010)?

断了今生、忘了曾经 提交于 2019-12-13 04:06:51
问题 I'm trying to run GetChanges method (sitedata.asmx) from a Java application. However I can't figure out the correct parameters I must pass. This is for SharePoint 2010. By checking on the service protocol specification, I saw this are the required parameters: objectType: The change tracking space to report about, either "ContentDatabase" or "SiteCollection". All other objectType values, as defined in section 2.2.5.3, MUST NOT be used. Note that "Site" in the context of this parameter actually

Enable button on another .xaml page

纵饮孤独 提交于 2019-12-13 03:55:32
问题 I have a button 'ReadMore' defined Page.xaml . How may I enable it again when I click on a button that closes ThumbnailDetails.xaml ? Users select an item @ a ListBox and they are directed to ThumbnailDetails.xaml by the way. Somehow it's not working? Page.xaml.cs: void NewsList_SelectionChanged(object sender, SelectionChangedEventArgs e) { StaffNews news = (StaffNews) NewsList.SelectedItem; if (news != null) { DetailsView.DataContext = news; DetailsView.Visibility = Visibility.Visible; /

How get details of unexpected sharepoint error?

≡放荡痞女 提交于 2019-12-13 03:54:48
问题 I have deployed sharepoint solutions. Some of web-parts always cause unexpected error. Some days ago they worked, before installing sharepoint on new server. I will try to find error details. In Central Administration http://localhost:3442/_admin/metrics.aspx in Trace Log C:\program files\common files\Microsoft shared\Web server extensions\12\LOGS files have not detail.aspx information. IIS logs is not contain useful information too Windows Event Log is empty I switched <customErrors mode=

SharePoint running a method when item added to a library

梦想与她 提交于 2019-12-13 03:43:30
问题 I have a library and I want to run some code when an item is added to populate some additonal columns. Is there any way I can have this code run automcailly. Where would I go about adding it. Also would it be possible to have a screen to be able to edit the options of the code. Just some pointing in the right dirrection would be great. Would this be a case of creating a workflow? 回答1: Workflows are not the way to go about it. You should be creating an item event receiver. The reason I say