WHen switching out to v1.2 of uSiteBuilder i get the following error:
Server Error in '/' Application.
'Tab' property specified was not found.
Switching back to v1.1. it works again. Is there anything I need to check through in my doctype classes regarding tab declaration? I just have the standard notation, Tab="TabName" in my properties, and where they are generic properties I do not assign the attribute at all.
Hi Barry, do you see any stack trace? Do you know in which document type it occurs and can you paste its code? And which Umbraco version are you using?
'Tab' property specified was not found.
WHen switching out to v1.2 of uSiteBuilder i get the following error:
Server Error in '/' Application.
'Tab' property specified was not found.
Switching back to v1.1. it works again. Is there anything I need to check through in my doctype classes regarding tab declaration? I just have the standard notation, Tab="TabName" in my properties, and where they are generic properties I do not assign the attribute at all.
Hi Barry, do you see any stack trace? Do you know in which document type it occurs and can you paste its code? And which Umbraco version are you using?
I am getting the same error as well. I am using umbraco 4.7.1 and Latest version of USitebuilder downloaded from CodePlex.
Any clue how to fix this error?
Following is the error stacktrace :
Can you paste the code of a document type that is causing this problem?
[DocumentType]
publicclassHomePage : Page
{
[DocumentTypeProperty(UmbracoPropertyType.Textstring, Tab = "Google")]
public string GoogleAnalyticCode { get; set; }
}
[DocumentType]
public class Page : Vega.USiteBuilder.DocumentTypeBase
{
[DocumentTypeProperty(UmbracoPropertyType.Textstring, Tab = "Meta")]
public string Title { get; set; }
[DocumentTypeProperty(UmbracoPropertyType.Textstring, Tab = "Meta")]
public string Description { get; set; }
[DocumentTypeProperty(UmbracoPropertyType.Textstring, Tab = "Meta")]
public string Keyword { get; set; }
}
Can you tell me what is exact version of uSitBuilder that you are using (right click on .dll, Properties, Details)?
You are using .NET 4.0 for your project, right?
is working on a reply...