You are here: Foswiki>Tasks Web>Item11237 (14 Nov 2011, GeorgeClark)Edit Attach

Item11237: Hierarchical Navigation don`t work

pencil
Priority: Normal
Current State: No Action Required
Released In: n/a
Target Release: n/a
Applies To: Engine
Component:
Branches:
Reported By: SimonEd
Waiting For:
Last Change By: GeorgeClark
Hy, to get a Childlist i did exactly, what is written in System/HierarchicalNavigation. I have a parenttopic ("ParentTopic") and a childtopic ("ChildTopic") in the sandbox. then i wrote in the parenttopic:
%INCLUDE{"%SANDBOXWEB%.ParentTopic" section="all"}%
and i got this:

Warnung: Konnte Topic ParentTopic nicht finden (in english something like: Attention: ... not found ...)

-- SimonEd - 04 Nov 2011

The include needs to be for the system web topic. The section you include is actually a query search for the parents and children of the including topic.

%INCLUDE{"%SYSTEMWEB%.HierarchicalNavigation" section="all"}%

Which shows:

-- GeorgeClark - 04 Nov 2011

I understand right, this is only working in the Systemweb? How to get a list of all childs of a specific topic in an specific web. which is not the Systemweb?

-- SimonEd - 05 Nov 2011

No - it works in ANY web. The query being %INCLUDEd searches for the BASETOPIC and BASEWEB. These variables are the topic and web that is requested in the URL, not the included topic. In the above example I wrote, it is showing this task - Item11237, and it's parent topic - WebHome. I'll add an Item11237Child task as well.

If you want the children of some other topic than the topic where you write %INCLUDE ... You need to actually write the query in your topic directly, except use the desired web and topic instead of BASEWEB and BASETOPIC macros.

%SEARCH{
   "parent.name='%BASETOPIC%'"
   web="%BASEWEB%"
   type="query"
   nonoise="on"
   format="<li class='childTopic'>$percentICON{line_ur_gray}$percent [[$web.$topic][$topic]]</li>"
}%

-- GeorgeClark - 05 Nov 2011

thanks. sorry, i`m not an expert ... there seems to be a special trick. or it is a mystery. the code you posted does not work. I replaced BASETOPIC and BASEWEB with the desired ("ParentTopic"+"SANDBOXWEB"). (I've copied the code and edited it in the windows-editor, and then i pasted in the wikitexteditor of the endtopic. so there is no <pre> or verbatim or something like this.) but this "end"topic shows is only the code itself - and nothing else???

-- SimonEd - 07 Nov 2011

sorry for that "pre"

-- SimonEd - 07 Nov 2011

You are probably better off working directly in the wiki text editor, and not cutting/pasting things between windows and the wiki. Look at this topic Item11237?raw=on raw view to see the following code. I've modified it to show the children of the Development.FeatureRequest topic. It looks like I had a cut/paste error in the above example - missed the ending }% ... which I've added in.

(Note for general usage and support questions like this, the Support web is a more appropriate location, or better yet, by using our IRC discussion forum, you can get realtime help.

---+++ Children for [[Development.FeatureRequest]]
%SEARCH{
   "parent.name='FeatureRequest'"
   web="Development"
   type="query"
   nonoise="on"
   format="<li class='childTopic'>$percentICON{line_ur_gray}$percent [[$web.$topic][$topic]]</li>"
}%

Children for Development.FeatureRequest

  • line_ur_gray AJAXOnDemandCheckersForConfigure
  • line_ur_gray AcceptedFeatureProposals
  • line_ur_gray ActionTrackerDescendingSort
  • line_ur_gray AddADDWORKINGDAYSToSSP
  • line_ur_gray AddAReadOnlyMetaClass
  • line_ur_gray AddAWayToShiftHeadingLevels
  • line_ur_gray AddAltParamToICON
  • line_ur_gray AddAngleBracketsToFormatTokens
  • line_ur_gray AddAutoViewTemplatePlugintoFoswiki
  • line_ur_gray AddBacklinksToQuery
  • line_ur_gray AddBeforeRenameHandler
  • line_ur_gray AddCPANModulesIPCRunAndFileWhich
  • line_ur_gray AddConcatOptionToAttrs
  • line_ur_gray AddConfigurationWizard
  • line_ur_gray AddContainsComparitorForQuerySearch
  • line_ur_gray AddCreateTopicToFunc
  • line_ur_gray AddDKIMEmailSigning
  • line_ur_gray AddDataFormCreatorWizard
  • line_ur_gray AddDefaultTopicParameterToINCLUDE
  • line_ur_gray AddDefaultValueToSTARTSECTION
  • line_ur_gray AddDefaultWebName
  • line_ur_gray AddDefaultsToFields
  • line_ur_gray AddDockerContainerForDistributionMethod
  • line_ur_gray AddDollarTotalToFormattedSearch
  • line_ur_gray AddENDINCLUDEandSTOPSECTION
  • line_ur_gray AddEXPANDMacro
  • line_ur_gray AddEarlyPluginHandler
  • line_ur_gray AddExtensionRepositoriesToFoswikiOrg
  • line_ur_gray AddExtraSetupToUnitTests
  • line_ur_gray AddFamFamFamContribToCore
  • line_ur_gray AddFeatureLevelContext
  • line_ur_gray AddFilterPlugin
  • line_ur_gray AddFormToAllDistributedTopics
  • line_ur_gray AddFormatControlToSearchChanges
  • line_ur_gray AddFoswikiFuncGetScriptUrlPath
  • line_ur_gray AddFoswikiFuncWikifyWebTopicName
  • line_ur_gray AddFurtherControlsOnSudo
  • line_ur_gray AddFurtherTopicNameControls
  • line_ur_gray AddGenerateRandomString
  • line_ur_gray AddGitHubToReleaseDistributionSites
  • line_ur_gray AddHideOptionToSTARTSECTION
  • line_ur_gray AddIsoweekToSpreadSheetPlugin
  • line_ur_gray AddJsViews
  • line_ur_gray AddListOperationsToFORMAT
  • line_ur_gray AddLogoutHandler
  • line_ur_gray AddMarkupToExcludeContentFromRendering
  • line_ur_gray AddMatchOperatorToQueryLanguage
  • line_ur_gray AddMetaParentTopic
  • line_ur_gray AddMetaSetActionToEditAndSave
  • line_ur_gray AddNatEditToCore
  • line_ur_gray AddNewWebHandlers
  • line_ur_gray AddNoProxyFeature
  • line_ur_gray AddNormalizeWebTopicModifiersToQueries
  • line_ur_gray AddNumberOfTopicsToFormattedSearch
  • line_ur_gray AddOperatorsToQueries
  • line_ur_gray AddOptionalDescriptionToAccessDeniedTemplate
  • line_ur_gray AddOptionalRegistrationEmailValidation
  • line_ur_gray AddOrRelationToFORMFIELD
  • line_ur_gray AddPARENTWEBMacro
  • line_ur_gray AddPackageNavigationToPerlDoc
  • line_ur_gray AddPagingToAllDistributedSearchTopics
  • line_ur_gray AddPasswordManagementFunctions
  • line_ur_gray AddPendingRegistrationsReport
  • line_ur_gray AddPlusValuesToRadioAndCheckboxes
  • line_ur_gray AddRegistrationTokenToUserinfo
  • line_ur_gray AddRegistrationValidationHandler
  • line_ur_gray AddRemoveFileFeatureToManifest
  • line_ur_gray AddRequestSetToCore
  • line_ur_gray AddSMELLToPerlDoc
  • line_ur_gray AddSWITCHMacro
  • line_ur_gray AddSearchResultsPaginationToRelease01x00
  • line_ur_gray AddSetDefaultToTestFields
  • line_ur_gray AddSortingBehaviourToSearch
  • line_ur_gray AddStaticContext
  • line_ur_gray AddTakeOutPutBackBlocksToFunc
  • line_ur_gray AddTaskPriorityOfSecurity
  • line_ur_gray AddTemplateTopicSection
  • line_ur_gray AddTimeFeaturesToAttachmentLinks
  • line_ur_gray AddUpdatesPluginToDefaultRelease
  • line_ur_gray AddUserToGroupsOnRegistration
  • line_ur_gray AddValidationsToURLPARAMMacro
  • line_ur_gray AddWebParamToAllCgiScripts
  • line_ur_gray AddWikiSnapshots
  • line_ur_gray AdminApprovalOfNewUsers
  • line_ur_gray AdoptACSSFramework
  • line_ur_gray AdoptSASS
  • line_ur_gray AjaxAccessFixes
  • line_ur_gray AllFeatureProposals
  • line_ur_gray AllFeatureRequests
  • line_ur_gray AllowFootNotePluginDeactivation
  • line_ur_gray AllowGuestsToUseRESTAsDefault
  • line_ur_gray AllowJSCalendarContribToUseTimePicker
  • line_ur_gray AllowLocalConfigurationForJSCalendarContrib
  • line_ur_gray AllowLoginUsingEmailAddress
  • line_ur_gray AllowTopicAccessWhenFormRestricted
  • line_ur_gray AllowTypedData
  • line_ur_gray AllowUnauthenticatedRESTHandlers
  • line_ur_gray AllowWebUsersTrashAccess
  • line_ur_gray AsciiDocPlugin
  • line_ur_gray AttachFileDuringTemplateTopicCreation
  • line_ur_gray AttachmentStorageInCMS
  • line_ur_gray AttachmentVaults
  • line_ur_gray AutoincFormfieldPlugin
  • line_ur_gray AutomagicalUpdating
  • line_ur_gray AvoidShootingSelfInFoot
  • line_ur_gray BetterPluginPackageDiagnostics
  • line_ur_gray BlurAuthCookieName
  • line_ur_gray BorrowXwikisIncludeMechanism
  • line_ur_gray CacheGetSkinCalculation
  • line_ur_gray CachedIncludes
  • line_ur_gray CancelButtonsShouldUseViewScript
  • line_ur_gray CategorizeExtensionsInFindExtensions
  • line_ur_gray CentralizeHtmlFormHandling
  • line_ur_gray ChangeApacheAuthToDigest
  • line_ur_gray ChangeDefaultHtpasswdEncoding
  • line_ur_gray ChangeImageLinkBehaviour
  • line_ur_gray ChangeLoginName
  • line_ur_gray ChangeRenameBehaviourOnRenamingLinks
  • line_ur_gray ClarifyQueryParamBestPractices
  • line_ur_gray ClarifyReleaseProcessForCoreExtensions
  • line_ur_gray CleanUpFoswikiLocales
  • line_ur_gray CleanUpNewUserTemplate
  • line_ur_gray CleanUpTopicParentage
  • line_ur_gray CleanUpWebPreferences
  • line_ur_gray CleanerConfigurePluginsPane
  • line_ur_gray CleanerSyntaxForMetaDataAccess
  • line_ur_gray ClientSiteEditorInNatEditPluggable
  • line_ur_gray CloneTopicLinkUnderMore
  • line_ur_gray CompleteMIMESupportInEmail
  • line_ur_gray CompletedFeatureProposals
  • line_ur_gray CompletedFeatureProposalsTml
  • line_ur_gray ConfigurableCookieNamesAndPaths
  • line_ur_gray ConfigurableURLIncludes
  • line_ur_gray ConfigureGuessedDirectoriesOnWin32
  • line_ur_gray ConfigureScript
  • line_ur_gray ConsistentFormFieldValues
  • line_ur_gray ContinueCanonicalSCRIPTURLDev
  • line_ur_gray ControlFoswikiTemporaryFileLocations
  • line_ur_gray ControlOverVariableExpansion
  • line_ur_gray ConvertToModernPerlVersionStrings
  • line_ur_gray CopyingToExistingTopic
  • line_ur_gray CreateHomeWebConfigVar
  • line_ur_gray CreateISODateFormat
  • line_ur_gray CreateStandardTopicUpdateNotes
  • line_ur_gray CreoleSupport
  • line_ur_gray CronWizardFunctionalityInEachRelavantPlugin
  • line_ur_gray CustomNewUserTemplates
  • line_ur_gray CustomizeDisplayedFieldTitle
  • line_ur_gray DIsplayBrokenuserLinksBetter
  • line_ur_gray DataFormFieldPermissions
  • line_ur_gray DataFormInheritance
  • line_ur_gray DateAsAQueryHint
  • line_ur_gray DeKiAlikeWYSIWYG
  • line_ur_gray DebugPreferenceSettings
  • line_ur_gray DefineOtherMacroExpansionTypes
  • line_ur_gray DelegateMoreProcessingToSearchAlgorithm
  • line_ur_gray DemandParseTables
  • line_ur_gray DependenciesFreedom
  • line_ur_gray DeprecateAfterAttachmentSaveHandler
  • line_ur_gray DeprecateAllowInlineScript
  • line_ur_gray DeprecateApacheHtpasswdModule
  • line_ur_gray DeprecateAutoAttach
  • line_ur_gray DeprecateContextlessURLConstructs
  • line_ur_gray DeprecateEachEventSince
  • line_ur_gray DeprecateErrorPm
  • line_ur_gray DeprecateHTTPandHTTPS
  • line_ur_gray DeprecateInitUserHandler
  • line_ur_gray DeprecateSelfRunningExtensionInstaller
  • line_ur_gray DeprecateSlashAsRef
  • line_ur_gray DeprecateTinyMCEPluginInitPreference
  • line_ur_gray DeprecateUndocumentedSqBracketLinkFormat
  • line_ur_gray DeprecationProcess
  • line_ur_gray DirectInteractionWithAttachments
  • line_ur_gray DisableWikiWordsWithNumbers
  • line_ur_gray DocumentAlreadySupportedFuncQueryOptions
  • line_ur_gray DublinCoreMetaData
  • line_ur_gray DynamicViewEditHandling
  • line_ur_gray DynamicallyUpdatingDataFormProperties
  • line_ur_gray ENCODEnlsToBR
  • line_ur_gray EasierMirroringOfExtensionRepositories
  • line_ur_gray EasierNestedSearch
  • line_ur_gray EasyDevelopment
  • line_ur_gray EditChapterPluginChildSections
  • line_ur_gray EnableDisplayOfFilesInFormattedSearch
  • line_ur_gray EnableFriendlyAttributeParser
  • line_ur_gray EnableLowerCaseTopicNames
  • line_ur_gray EncodeMacroOutputForJavaScript
  • line_ur_gray EncryptDataInTopics
  • line_ur_gray EngineContribsAsCoreExtensions
  • line_ur_gray EnginesAsContribs
  • line_ur_gray EnhanceConfigureLogging
  • line_ur_gray EnhanceIfStatementsAndAttrsParsing
  • line_ur_gray EnhanceInsertEditLinkDialog
  • line_ur_gray EnhanceTemplatesWithDynamicValues
  • line_ur_gray EnhancedShowPreference
  • line_ur_gray Enhancei18nArchitecture
  • line_ur_gray EnhancementToWebMacro
  • line_ur_gray EscapeQuotesOptionInICON
  • line_ur_gray ExcelImportExportPluginNoFormsFeature
  • line_ur_gray ExpertOptionForCookieDomainRealm
  • line_ur_gray ExportTableToCsv
  • line_ur_gray ExposePreferenceStackTopics
  • line_ur_gray ExtendedVariableHandling
  • line_ur_gray ExtraResponseHeaderFields
  • line_ur_gray ExtractAndCentralizeFormattingRefactor
  • line_ur_gray FSAPluginHooks
  • line_ur_gray FallBackToTopicWhenTrailingSpaceAndNoSuchSubweb
  • line_ur_gray FasterAccessToCreatorData
  • line_ur_gray FeatureRequestTopicTemplate
  • line_ur_gray FeatureSets
  • line_ur_gray FinerControlOverPluginsOrder
  • line_ur_gray FixDelete
  • line_ur_gray FixSearchLimitAndPagingMess
  • line_ur_gray FormPluginTopicDefnition
  • line_ur_gray FormallySupportMultipleExtensionVersions
  • line_ur_gray FormatArbitraryTimes
  • line_ur_gray FormattedSearchReturnPatternAndCountInContext
  • line_ur_gray FoswikiBookProposal
  • line_ur_gray FoswikiCache
  • line_ur_gray FoswikiOrgShouldUseSSL
  • line_ur_gray FoswikiSettingsWizard
  • line_ur_gray FreezeRevisionNumberingScheme
  • line_ur_gray FuncMoveTopicIgnorePermissions
  • line_ur_gray GroupNamesShouldBeLanguageIndependent
  • line_ur_gray GroupPermissionsForFilterPlugin
  • line_ur_gray GuardAgainstCopyrightInfringement
  • line_ur_gray HereDocumentSyntaxForMacros
  • line_ur_gray HideIrrelevantConfigureOptions
  • line_ur_gray HtmlAttributesShouldUseSingleQuotes
  • line_ur_gray ImplementAddMeToAdminButton
  • line_ur_gray ImplementAdditiveTopicACLs
  • line_ur_gray ImproveBulkRegistration
  • line_ur_gray ImproveExtensionBackupProcess
  • line_ur_gray ImproveHtPaswdUserFlexibility
  • line_ur_gray ImproveOOModel
  • line_ur_gray ImprovePageLoadTime
  • line_ur_gray ImprovePasswordResetProcess
  • line_ur_gray ImproveSearchResultsList
  • line_ur_gray ImproveSecurityOfTemplateAuth
  • line_ur_gray ImproveStatisticsHandlingForMissingTopics
  • line_ur_gray ImproveSupportForComments
  • line_ur_gray ImproveSupportForDatabaseSearches
  • line_ur_gray ImproveVirtualHostSupportInApacheConfigGenerator
  • line_ur_gray ImproveWebSearchPages
  • line_ur_gray ImprovedRESTSupport
  • line_ur_gray InGMTIMESupportTwoDigitWeek
  • line_ur_gray IncreaseCacheControlMaxAgeForSystemWeb
  • line_ur_gray InheritAccessControlsFromSitePreferences
  • line_ur_gray InheritWikiLinksTopics
  • line_ur_gray InlineTopicContentAsMeta
  • line_ur_gray InstallNatSkinAndWidgetsSkinOnFoswikiDotOrg
  • line_ur_gray InterfacingWithValidationMethods
  • line_ur_gray InterwikiPluginMacroExpansionCustomURLs
  • line_ur_gray IntroduceForceDefaultUrlHostToggle
  • line_ur_gray IsManagingEmailsShouldBeConfigurable
  • line_ur_gray JQTablePluginAsDefaultExtension
  • line_ur_gray KatacodaFoswikiTutorial
  • line_ur_gray KeystrokesForSlideShowPlugin
  • line_ur_gray KinoSearchThroughTagMeTags
  • line_ur_gray LazyLoadJsAndCssForSpeed
  • line_ur_gray LeadNewInstallersToConfigure
  • line_ur_gray LetPluginsDisableOtherPlugins
  • line_ur_gray LimitCreationOfSubWebs
  • line_ur_gray LinksInPreview
  • line_ur_gray ListFormatViewAndEditTemplate
  • line_ur_gray LoadDifferentTopicVersions
  • line_ur_gray MacroForRetrievingFieldDefaultValues
  • line_ur_gray MacroToListInstalledFormFieldTypes
  • line_ur_gray MailInContribAdditionalEmailSendTo
  • line_ur_gray MailerContribShouldOptionallyExcludeCertainAuthors
  • line_ur_gray MakeItEasierToBlockSystemWebGuestAccess
  • line_ur_gray MakeOfficialFoswikiBlogOnFoswiki
  • line_ur_gray MakeREMOTEUSERaWikiWord
  • line_ur_gray MakeSEARCHResultPartitioningByWebOptional
  • line_ur_gray MakeStartPageCOnfigurable
  • line_ur_gray MakeUserRegistrationAsLeanAsPossible
  • line_ur_gray MakeUserRegistrationCustomizable
  • line_ur_gray MakeWEBFORMSMoreUsable
  • line_ur_gray MakeZonesLessIntrusive
  • line_ur_gray MakingVarVARTopicCapable
  • line_ur_gray MassDeleteofSelectedTopics
  • line_ur_gray MeasureAndReportScriptTiming
  • line_ur_gray MergeWYSIWYGEditors
  • line_ur_gray MicrosoftTeamsIntegrationOfFoswiki
  • line_ur_gray MissingInsteadOfUndefined
  • line_ur_gray ModPerlStartupScript
  • line_ur_gray ModernizeICONMacro
  • line_ur_gray MooFoswikiPm
  • line_ur_gray MooStoreImplementationClasses
  • line_ur_gray MoreAttractiveForm
  • line_ur_gray MoreRegistrationSimplification
  • line_ur_gray MoveCPANLibToSeparateContrib
  • line_ur_gray MoveCodeRepositoryToGit
  • line_ur_gray MoveFoswikiCodeIntoCPAN
  • line_ur_gray MoveLogsToWorking
  • line_ur_gray MoveQueryPathParsingIntoFoswikiRequest
  • line_ur_gray MoveSECTIONsToFoswikiMeta
  • line_ur_gray MoveToJQuery
  • line_ur_gray MovingConfigIntoFile
  • line_ur_gray MultiStoreRefactor
  • line_ur_gray NewFeatureProposals
  • line_ur_gray NewOODesignPlan
  • line_ur_gray NewTopicLinkNotAQuestionMark
  • line_ur_gray NoLinkToSelf
  • line_ur_gray NoRCSForBinaryAttachments
  • line_ur_gray NormaliseRegexSyntax
  • line_ur_gray NumbersAsUpperCase
  • line_ur_gray OOConfigSpecsFormat
  • line_ur_gray OONewPluginModel
  • line_ur_gray OfferAnOpenSearchPlugin
  • line_ur_gray OfficeConnector
  • line_ur_gray OneStepUserDeletion
  • line_ur_gray OneTimeNotification
  • line_ur_gray OpenLinkInNewWndow
  • line_ur_gray OptionToAddServerTimeToEmailHeaders
  • line_ur_gray OptionToAvoidFlattenedSummaryInFormattedSearch
  • line_ur_gray OtherInstallersShouldNotLinkToOldReleases
  • line_ur_gray ParallelSearch
  • line_ur_gray ParameterizedGroupsMacro
  • line_ur_gray ParameterizedVariables
  • line_ur_gray ParamsInSquabs
  • line_ur_gray ParentTopicMailInContrib
  • line_ur_gray ParkedFeatureProposals
  • line_ur_gray PatchBinaryAsConfigureOption
  • line_ur_gray PermissionRawSeparatelyToView
  • line_ur_gray PermissionsChange
  • line_ur_gray PingCommand
  • line_ur_gray PluggableAccessControlImplementation
  • line_ur_gray PluggableRenderers
  • line_ur_gray PluginGarbageCollection
  • line_ur_gray PluginOrderShouldSpecifyLastPlugins
  • line_ur_gray PreInstallNatEditContrib
  • line_ur_gray PreferenceValuesInDifferentContexts
  • line_ur_gray PreloadContribs
  • line_ur_gray PreventRedundantFileReadsInStore
  • line_ur_gray ProcessAddToHeadAdds
  • line_ur_gray PromoteMetaDotPmToFirstClassAPI
  • line_ur_gray ProposalsReadyForCommunityVote
  • line_ur_gray ProtectConfigureUsingHtigestByDefault
  • line_ur_gray QueryAccessControls
  • line_ur_gray QueryAcrossTopicRevisions
  • line_ur_gray QueryAddressParts
  • line_ur_gray QueryCustomCollections
  • line_ur_gray RecodeSearchCgi
  • line_ur_gray RecursiveTMPLDefinitions
  • line_ur_gray RedesignAdminToolsCategory
  • line_ur_gray RedesignLoggerAPI
  • line_ur_gray RedesignManagingWebs
  • line_ur_gray RedoSmiliesPluginAsICON
  • line_ur_gray ReduceImpactOfCGIDotPMinFoswiki
  • line_ur_gray RefactorACLCheckOnResultSetAsFilter
  • line_ur_gray RegisteredCalculateMacro
  • line_ur_gray RegistrationI18N
  • line_ur_gray RejectDontRenameBadFileUploads
  • line_ur_gray RejectedFeatureProposals
  • line_ur_gray RelayAlertsToTopicTop
  • line_ur_gray RemoveClassicSkin
  • line_ur_gray RemoveDeprecatedEmptyDENYRule
  • line_ur_gray RemoveDuplicationInTheStore
  • line_ur_gray RemoveHardcodedCssClassNames
  • line_ur_gray RemoveHomegrownFoswikiNetCode
  • line_ur_gray RemoveSearchDefaultType
  • line_ur_gray RemoveTaintCheckingFromFoswiki
  • line_ur_gray RenameFormField
  • line_ur_gray RenameTemplateTopicAndFormTemplateParams
  • line_ur_gray RenamingAttachments
  • line_ur_gray ReplaceConfigureWithConfigurePlugin
  • line_ur_gray ReplaceEditTablePluginWithEditRowPlugin
  • line_ur_gray ReplaceFoswikiTimeModule
  • line_ur_gray ReplacementForChili
  • line_ur_gray RequirePerl510From2017x03
  • line_ur_gray RequirePerl588
  • line_ur_gray ResourceBookingPlugin
  • line_ur_gray ResultSets
  • line_ur_gray RevCommentsTopicDelete
  • line_ur_gray ReviewFileSystemPermissionsAndCheckFix
  • line_ur_gray RulebasedViewTemplates
  • line_ur_gray SAMLAuthenticationLogin
  • line_ur_gray SMIMESupportInMail
  • line_ur_gray SaferURLPARAMasDefault
  • line_ur_gray SandboxWebNameShouldBeMapped
  • line_ur_gray ScanForMissingPerlModules
  • line_ur_gray SearchBySection
  • line_ur_gray SearchNeedsAltParameter
  • line_ur_gray SearchOrderByTopicElement
  • line_ur_gray SearchOrderingOnMultipleFields
  • line_ur_gray SearchResultsPagination
  • line_ur_gray SearchResultsWithHeadingLinks
  • line_ur_gray SearchSeparatorDefaultHeaderFooter
  • line_ur_gray SectionalTransforms
  • line_ur_gray SecurityChecklists
  • line_ur_gray SelectSkinButtons
  • line_ur_gray SettingAndGettingVariablesUsingMacros
  • line_ur_gray ShipCommonlyTailoredTopicsInConfigure
  • line_ur_gray ShipCompareRevisionsAddOnWithFoswiki01x01
  • line_ur_gray ShipHistoryPluginWithFoswiki01x01
  • line_ur_gray ShipSubscribePluginWithFoswiki01x01
  • line_ur_gray ShorterUrlSupport
  • line_ur_gray ShoutBox
  • line_ur_gray SimpleChecklistSupport
  • line_ur_gray SimpleVarInclude
  • line_ur_gray SimplifyExtensionReleaseForms
  • line_ur_gray SimplifyMasterTemplateDefinition
  • line_ur_gray SimplifyNonDeveloperEditingofReleaseManagedTopics
  • line_ur_gray SimplifySEARCHParameters
  • line_ur_gray SimplifySearchTemplates
  • line_ur_gray SimplifyTheDefaultInstall
  • line_ur_gray SimplifyTheFeatureProposalProcess
  • line_ur_gray SimplifyTheStoreMetaSemantics
  • line_ur_gray SkinTemplateOverideForBatchUpload
  • line_ur_gray SmartGroups
  • line_ur_gray SmiliesPluginPictures
  • line_ur_gray SoftAsserts
  • line_ur_gray SortOrderTagForTopicsAndWebs
  • line_ur_gray SpecFileSyntaxEnhancements
  • line_ur_gray SpecialNonWikiwordLinking
  • line_ur_gray SplitArgumentsinMAKETEXT
  • line_ur_gray SplitTopicAttachmentNameFilters
  • line_ur_gray SpreadSheetPluginFourNewFunctions
  • line_ur_gray SpreadsheetRegexFunction
  • line_ur_gray StoreAs1stClassExtension
  • line_ur_gray StoresShouldBePassedConfigHash
  • line_ur_gray SummaryBasedOnSearchTerms
  • line_ur_gray SuperLiteralForMacros
  • line_ur_gray SupportAllMacrosInTemplateTopics
  • line_ur_gray SupportBlockquoteAndIndenting
  • line_ur_gray SupportBulkUpdates
  • line_ur_gray SupportCommaFormattingToken
  • line_ur_gray SupportDITA
  • line_ur_gray SupportDeferredExecution
  • line_ur_gray SupportDollarPercent
  • line_ur_gray SupportDynamicGeneratedAttachments
  • line_ur_gray SupportHorizontalMenusThroughRenderListPlugin
  • line_ur_gray SupportLineThroughFormatTag
  • line_ur_gray SupportMultiKeySorting
  • line_ur_gray SupportPermanentLinks
  • line_ur_gray SupportSSLandTLSforSMTP
  • line_ur_gray SupportShorterACRONYMS
  • line_ur_gray SupportStrippingIPsFromLogfiles
  • line_ur_gray SupportSynchroEdit
  • line_ur_gray SupportXMLGeneration
  • line_ur_gray SuppressNonpublishedLinks
  • line_ur_gray SynchroniseInlineAndMetaPrefs
  • line_ur_gray SyntaxForDelayingMacrosAndFormatTokens
  • line_ur_gray SyntaxHighlightingEditor
  • line_ur_gray SystemTopicsUpdateMethod
  • line_ur_gray TasksWebFacelift
  • line_ur_gray TemplatingSearchResultSummaries
  • line_ur_gray TextEditModePreviewWindow
  • line_ur_gray ThinPrefsProposal
  • line_ur_gray TinyMCEMultipleVersionSupport
  • line_ur_gray TinyMCEPluginShouldBeMoreModular
  • line_ur_gray TocFailsForIdenticalHeadingNames
  • line_ur_gray ToolsScriptToChangeIpConfiguration
  • line_ur_gray TopicAddressing
  • line_ur_gray TopicCaseSensitivity
  • line_ur_gray TopicMovedMessageTooVisible
  • line_ur_gray TopicRecursePlugin
  • line_ur_gray TrimAllSpaces
  • line_ur_gray TwistyPluginAccordion
  • line_ur_gray USERINFOisTooRestrictive
  • line_ur_gray UnifyDocumentationViaFoswikiBook
  • line_ur_gray UnifyUnitTests
  • line_ur_gray UntangleStorePubDirectory
  • line_ur_gray UpdateEnhanceWYSIWYGEditor
  • line_ur_gray UpgradeSafeCustomisationsOfSystemTopics
  • line_ur_gray UrlparamPreventNewlineSubstitution
  • line_ur_gray UseEnhanceAndMoveSpecFiles
  • line_ur_gray UseRefererForRPC
  • line_ur_gray UseRelativeLinksByDefault
  • line_ur_gray UseSyntaxToChangeEvaluationOrder
  • line_ur_gray UseTemplateForRawView
  • line_ur_gray UseVariableForSignature
  • line_ur_gray UseXForwardedForHeader
  • line_ur_gray UserWebHomes
  • line_ur_gray VarFORMFIELDMissingThirdDefaultParameter
  • line_ur_gray ViewfileHttpRangeHeader
  • line_ur_gray WantedPages
  • line_ur_gray WebAdminPages
  • line_ur_gray Development
  • line_ur_gray WhatTheFunc
  • line_ur_gray WrapperMacrosForADDTOZONE
  • line_ur_gray WriteAQueryCookbook
  • line_ur_gray WysiwygContentPolicies
  • line_ur_gray WysiwygEditorProfiles
  • line_ur_gray WysiwygFormFields
  • -- GeorgeClark - 07 Nov 2011

    Thanks! Next time i use support web.

    -- SimonEd - 14 Nov 2011
     

    ItemTemplate edit

    Summary Hierarchical Navigation don`t work
    ReportedBy SimonEd
    Codebase
    SVN Range
    AppliesTo Engine
    Component
    Priority Normal
    CurrentState No Action Required
    WaitingFor
    Checkins
    TargetRelease n/a
    ReleasedIn n/a
    trunkCheckins
    Release01x01Checkins
    Topic revision: r8 - 14 Nov 2011, GeorgeClark
    The copyright of the content on this website is held by the contributing authors, except where stated elsewhere. See Copyright Statement. Creative Commons License    Legal Imprint    Privacy Policy