| bio | website | mattstark.blogspot.com |
|---|---|---|
| location | Toronto, ON | |
| age | 33 | |
| visits | member for | 1 year, 7 months |
| seen | yesterday | |
| stats | profile views | 2 |
|
Jan 21 |
comment |
Create variation hierarchies - job completes but does nothing Same here! No idea. |
|
Jul 26 |
comment |
Getting global Navigation working using onet.xml Alright - then in a feature ... add this code: web.Navigation.UseShared = true; ... where web is SPWeb ... get er done ... |
|
Jul 26 |
comment |
Customize layouts on Page Layout ribbon's dropwdown Is this a content type issue or web part zone naming issue? |
|
Jul 25 |
comment |
User Profile details are not available in the Search Have you tried deleting the User Profile - re-running your sync + re adding meta data + re running full crawl? I know this isn't an answer, but potentially there is some corruption in the record. Just a thought. |
|
Jul 20 |
comment |
English Labels stored in Managed Meta Data Fields in French Variation Site Also worth pointing out that English (source) labels are stored in the list items along with their GUIDs. The disassembly looks like this: TaxonomyFieldValue taxonomyFieldValue = new TaxonomyFieldValue(this.Field); taxonomyFieldValue.PopulateFromLabelGuidPair(this.webTaggingUI.Text); return (object) taxonomyFieldValue; ....... therefor, it would never show the French Term ... hence why a custom control is required to display the correct value ... hope this helps someone else ... |
|
Jul 20 |
comment |
English Labels stored in Managed Meta Data Fields in French Variation Site I should also add - I was hasty in assuming the ShowField attribute was not modified by variations feature - it was reset properly. Looking at disassembly this is an issue in the controls not checking the UI culture before reading the term set ... |
|
Jul 20 |
comment |
English Labels stored in Managed Meta Data Fields in French Variation Site Yup - all configured - OOTB screens show the correct french label - when customized view form VIA elements.xml / Visual Studio in custom schema / wsp we see the problem. |
|
Jul 20 |
comment |
English Labels stored in Managed Meta Data Fields in French Variation Site Both French & English languages were added to term store and both French / English labels were created. I went a step further and changed my regional settings not to inherit from the current web in hopes that would have significance. No luck their either. OOTB Edit Form does show the French picker / French labels in List View. However this custom form is not displaying french. I'm building a custom control that looks up in Term Set. Will post solution in 8 hours as I can't answer my own question this quickly. |
|
May 14 |
comment |
Microsoft Ajax Framework & SharePoint 2010 'Type' is undefined JavaScript error Amen brother. I've used both of those for similar situations. But the problem here is actually the dependency file Microsoft Ajax. You know the one where MS goes OOP all over JavaScript. |
|
May 14 |
comment |
Microsoft Ajax Framework & SharePoint 2010 'Type' is undefined JavaScript error Well, MS Ajax is registered by the Script Manager. And ya - that is an out of bound patch, but I'm not confident it is SharePoint that is the issue here. My train of thought has gone more toward ASP.Net as this is where Script Manager resides. Had to take a couple weeks on real issues, I will let you guys know if I find a resolution. This has mysteriously started working on a couple servers. Again, could also be IIS compression issues / the browsers can't load the file. |
|
Apr 2 |
comment |
Microsoft Ajax Framework & SharePoint 2010 'Type' is undefined JavaScript error BTW - I have verified this in three independent environments running SP version 14.0.6106.1000; Two SharePoint consulting firms, one major law firm in Canada; No upgrades were made to the Microsoft Ajax Framework. 1) Custom Application Pages based on v4.master do not load Microsoft Ajax; 2) Script Manager does not load MS Ajax out of master page; 3) ScriptLink "sp.js" does not load MS Ajax. To be 100% honest, I'm thinking there may be an issue with browsers decoding Gzip ... this has to be a common problem by now right? |
|
Apr 2 |
comment |
Microsoft Ajax Framework & SharePoint 2010 'Type' is undefined JavaScript error Per Jakobsen - I totally agree - hence my dilema |
|
Apr 2 |
comment |
Microsoft Ajax Framework & SharePoint 2010 'Type' is undefined JavaScript error I am including a ScriptManager in the master page which is supposed to register the AJAX framework. |