| bio | website | levalencia.blogspot.be |
|---|---|---|
| location | Antwerp, Belgium | |
| age | 34 | |
| visits | member for | 1 year, 7 months |
| seen | yesterday | |
| stats | profile views | 175 |
I am .net and Sharepoint consultant.
|
Dec 5 |
comment |
Find control in application page? if it helps, the .cs class inherits from : LayoutsPageBase |
|
Dec 5 |
comment |
Find control in application page? in the page load, pls see the updated question with more info |
|
Nov 28 |
comment |
workitem timerjob wont execute I suppose if I check that table, the workitemtype id should match: 34EC0602-B18B-418C-8CAA-77FF9E4CF3F7 |
|
Nov 7 |
comment |
How to hide the _cts folder in all document libraries? additionally, I added a new user into a group which has only read access to the site collection, I used that user to login, and he can also see the hidden _cts folder in all document libraries. |
|
Nov 7 |
comment |
How to hide the _cts folder in all document libraries? I checked and they were all enabled at web app level, however at site collection level, they are unchecked. I tried disabling them at web app level but I still see no difference. the _cts folder is still there. weird!!! |
|
Nov 6 |
comment |
How to hide the _cts folder in all document libraries? @DavidLozzi screenshot posted. |
|
Nov 5 |
comment |
How to hide the _cts folder in all document libraries? its not empty, inside cts there are folders with the content type names, and inside each of those folders there is a document template. but we didnt activate new content types or document sets via features. We do have feature upgrading event receivers that add fields to existing content types, mark some fields as not visible, etc, etc things like that |
|
Nov 5 |
comment |
Sharepoint Workspace creates _cts folder After we deployed our solution package, then the cts folder started appearing in all document libraries. THere is no code that involves changing that |
|
Oct 25 |
comment |
Sharepoint Workspace creates _cts folder did you ever solve this? I am having the same problem. I never used sharepoint workspace though |
|
Oct 15 |
comment |
How to update a one list from anothere list Nobody is going to do the work for you, what kind of programmer are you if you cant do a loop? did you at least tried something? |
|
Sep 27 |
comment |
Value does not fall within the expected range when iterating over all fields pls see update1, I tried both and it didnt work |
|
Sep 25 |
comment |
Value does not fall within the expected range when iterating over all fields cool answer, its actually weird that code was developed by someone else and it was working and suddenly its giving that exception, about the indexers, I dont really understand, if I am iterating over the SPFieldsCollection of the SPList in the first place then all fields should have an internal name that is a string not an int.? sharepoint bug? or misunderstanding from myself of how fields were developed by msft |
|
Sep 24 |
comment |
Value does not fall within the expected range when iterating over all fields I dont understand how is it possible that it doesnt exist in the list if I am iterating over the SPField of that list? |
|
Sep 19 |
comment |
ContenType Name is not being translated something I could notice is that the first time the content type was done, they hardcoded some labels, and some others were translated. So the existing lists based on that content type are not transalted, but new lists are translated |
|
Sep 17 |
comment |
ContenType Name is not being translated yes, other labels are translated in the same site collection. |
|
Sep 14 |
comment |
Add multiline html field is not showing HTML Ribbon tools it gets hit, the field is in the list. |
|
Sep 14 |
comment |
Add multiline html field is not showing HTML Ribbon tools I found this, social.technet.microsoft.com/Forums/en/…, but I am getting the field after adding it, so no sure how to implement the solution here |
|
Sep 14 |
comment |
How to add programatically a RichtText field to a contenttype any idea? thanks |
|
Sep 14 |
comment |
How to add programatically a RichtText field to a contenttype SPFieldLink fieldLink = new SPFieldLink(currentWeb.AvailableFields.GetField(reasonReturnedField.InternalName)); internalname is null, I dont understand it..7 |
|
Sep 14 |
comment |
How to add programatically a RichtText field to a contenttype if I do that, then the fieldlink wont be added. I am missing something else here? |