Web Forms :: Hide A Certain Child Node Only?
Jan 28, 2010
On our site we have a top menu, and a side menu. Other than using the same sitemap, they don't have any other relationship.
On the top menu, we only show the top links, with 0 child nodes, which is what we want.
On the side menu however, we want to show all the child pages when someone hovers over the main links. Some have up to 12 child nodes, and some only 1.
Our challenge is hiding a couple of specific pages from that menu.
An example is a "thanks for contacting us" page which is under the main "contact us" page. Otherwise, a person can hover over the contact page link and see the "thanks" page as a link - and we don't want people going directly to the thanks page. So, we want just "Contact" to show in that menu, no matter where a visitor is in the site.
I have tried a couple of solutions but they haven't worked. Is there an easier way to hide them?
View 3 Replies
Similar Messages:
Dec 30, 2010
I am using the default menu bar in visual web developer 2010.I have a Staff Portal item, this has child nodes such as sales, marketing that i would like to keep hidden until the user logs in.I'm using vb.net if that comes into it
View 5 Replies
Jan 22, 2011
i want to create one treeview dynamically which will have child node and sub child node.for this i am getting my treeview value from the table with below column:Id,Name,Parent,IsActivewhere main parent nodes parent id will be 0 and then all other records parent id would be related id. the table structure would look
View 3 Replies
Oct 16, 2012
I'm populating a treeview dynamically. On OnTreeNodePopulate I call a sub and populate the Parent nodes. I do not want to populate the child nodes at this time. Upto this point it works fine.
Now I would like the user to click the parent node and then populate the child node. I tried to use TreeNodeExpanded, but that is called for each parent node, so that didn't work.
View 1 Replies
Jan 24, 2010
I create a site map for my site but it only works three levels deep and I need at least six. How can I do that? Every time I add a child node under "Water Filters, Desalinators or Micropur" the sitemap doesn't show the child node. Until now my sitemap only works three levels deep: Home > Products > Water Filters But I need this: Home > Products > Water Filters > Katadyn > Personal Use > Pocket Turbo 1. This is my sitemap configuration:
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns=[URL] >
<siteMapNode url="~/default.aspx" title="Home">
<siteMapNode url="~/products.aspx" title="Products">
<siteMapNode url="~/waterfiltes.aspx" title="Water Filters" />
<siteMapNode url="~/desalinators.aspx" title="Desalinators" />
<siteMapNode url="~/micropur.aspx" title="Micropur" />
</siteMapNode>
<siteMapNode url="~/services.aspx" title="Services" />
<siteMapNode url="~/partners.aspx" title="Partners" />
<siteMapNode url="~/aboutus.aspx" title="About Us" />
<siteMapNode url="~/contact.aspx" title="Contact Us" />
</siteMapNode>
</siteMap>
View 8 Replies
Jan 24, 2011
I have some data that I am putting on a treeview and have a checkbox on the page to decide if the user wants to order the nodes by date or type.
To do this I need to check if the code has already added a child node so when grouping by the type I don't put it in lots of times.
Lets say I have Type 1 and Type 2 and each have 3 items that would fall under these I want to achieve:
Type 1
Item 1
Item 2
Item 3
Type 2
Item 1
Item 2
Item 3
Instead of:
Type 1
Item 1
Type 1
Item 2
etc etc etc
I tried using the node.Contains function but it doesn't seem to exist (I am using c#).
View 6 Replies
Jan 11, 2011
I have a Web.sitemap like this
Home
Menu A
Menu a
Menu b
MenuB
Menu c
Menu d
Now I want to insert 2 childs under Home become
Home
Menu1
Menu2
Menu A
Menu a
Menu b
Menu B
Menu c
Menu d
My web.sitemap file was like this:
[code]....
View 2 Replies
Oct 20, 2010
I created a sitemap with a treeview navigation in my aspx site. I am hoping someone can show me the code to put in a Masterpage so that when I expand a child node, all other nodes collapse, and when I expand another node, the previous expanded node collapses.
I have an example here of what I am trying to accomplish:
[URL]
I am using asp.net with VB.
View 6 Replies
Oct 2, 2010
I am using wicked code sqlsitemapprovider and it's VB version. Most of the things are going OK! But when I wanted to hide some of the nodes from appearing on menu while staying shown on sitemappath I cannot figure it out. I tried to change the sqlsitemapprovider code but was unsuccessfull.
[Code]....
and I get this error:
Özel Durum Ayrıntıları: System.IndexOutOfRangeException:
visibleKaynak Hatası:
[Code]....
Kaynak Dosya: D:WebsiteskaihlApp_CodeSqlSiteMapProvider.vb Satır:
156
How can I add this functionality into this system.
View 4 Replies
Jul 7, 2010
I had populated data in TreeView control. How will I drag a particular child node from a parent node and drop the dragged one to a DIV or any portion, using JQUERY ? I know in jquery, there are methods "draggable" and "droppable" to make this possible. But I want to drag a particular child node and drop it.
Or atleast How to fetch the text/id of a particular child node using jquery ? I hope I can drag,if I can fetch the child node
View 2 Replies
Mar 8, 2011
I need to remove particular child nodes from their parent in treeview control.
For example:
Before Login
home
-register
-login
-pdf
After login
home
-pdf
What is the best way to accomplish this?
View 2 Replies
Nov 4, 2010
I have a tree view created in my HTML Page
[code]...
now i want to hide the Stats node in the page load function in my code behind....
View 2 Replies
Jan 11, 2011
i have a table as child_id,parent_id,child_name,level i want to select all child(leaf nodes) with no further child for a particular parent in table.
[Code]....
View 1 Replies
Nov 12, 2010
i have a asp.net tree view control and its being data bound to XML returned from the DB.
once bound and the nodes are present in the control how can i remove/ hide the root node?
View 1 Replies
Sep 20, 2015
How to populate or bind TreeView from one table use SQLSERVER database in ASP.NET & C# table include
ID,Name,ParentID
View 1 Replies
Mar 31, 2014
There are multiple child nodes coming from Database in Treeview. Also, there is a DataGridview.
I want that when I select/click any of the child node from TreeView, it should show the related data(of selected child node) in DataGridview from Database on "Page Load".
My current code is below, which only binds all the data in DataGridview and Treeview from Database:
public Form1() {
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e) {
BindGrid();
FillchildNode();
[Code] .....
View 1 Replies
Jan 8, 2010
I am trying to display elements in a web page using <li>. The structure of the page is as follows
<ul>
<li> (How to hide its visibility if this has no child elements)
<ul>
<li> item 1</li>
<li> item 2</li>
<li> item 3</li>
</ul>
</li>
</ul>
My question is if the li element has no child items how do I hide it. I need to do this dynamically. If I find that I have no records to display as <li> item </li>....I should be able to hide the parent <li>. One soultion is make the <li id="something" runat=server>
if the child elements are not be shown I tried doing childelement.parent.Visible = false.
View 1 Replies
Jan 31, 2011
[Code]....
[Code]....
[Code]....
I have a treeview, the TreeNode's NavigateUrl have a javascript function, after i click the "Item 1", it shows a message box ("1"), but it does not expand the child node, what can i do?
View 4 Replies
Dec 8, 2010
Is it possible to have >1 sitemap files so that I can separate section 1 and 2 into two separate sitemap files?
The codes give this error:
Could not find the sitemap node with URL 'Menu1.aspx?node=hardware'.
The .aspx file has:
[Code]....
The Web.sitemap file contains:
[Code]....
[Code]....
View 6 Replies
Feb 18, 2011
how to read selected node and its parent node values for treeview in asp.net in JAVAscript.
View 3 Replies
Oct 19, 2010
I created a sitemap with a treeview navigation in my aspx site. I am hoping someone can show me the code to put in a Masterpage so that when I expand a child node, all other nodes collapse, and when I expand another node, the previous expanded node collapses.
I have an example here of what I am trying to accomplish:
[URL]
I am using asp.net with VB.
I have been scouring the internet looking for a solution, but so far haven't found anything that works.
View 1 Replies
Mar 31, 2011
<?xml version="1.0" encoding="utf-8"?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0">
<siteMapNode url="~/" title="Úvodní stránka">
<siteMapNode url="Pocitace" title="Počítače" />
<siteMapNode url="Elektronika" title="Elektronika" />
[code]...
View 2 Replies
Mar 25, 2010
I have a second level node that goes onto two lines. The first line indents 15px as is set by the class for node level 2. The seond line kicks back to the same level as 1st level nodes. Here's what I mean:
Parent Node
Second node
line 2 of second node
I want it to be like this:
Parent Node
Second Node
line 2 of second node
View 4 Replies
Aug 11, 2010
<asp:TreeView ID="TreeViewCategories" runat="server" ExpandDepth="0" Style="min-height: 200px;
max-height: 500px;" LineImagesFolder="~/TreeLineImages" NodeIndent="0" LeafNodeStyle-CssClass="LeafNodesStyle"
CssClass="TreeView" NodeStyle-CssClass="NodeStyle" ParentNodeStyle-CssClass="ParentNodeStyle"
[code]...
View 2 Replies
Dec 5, 2013
In Nested Grid, we get a '+' sign. The problem is that '+' sign appears all times, even if there are no child records for that row. 1. Can we enable/disable OR Hide/Unhide '+' sign. depending on if child rows exits.2. OR alteast we can put some bgcolor indicating to user that this record do have child rows. Without any indicator user may feel quite annoying to click on '+' sign and nothing happens.
View 1 Replies