Hi All,
I have used <asp:TreeView> tag for treeview, and i have set SelectedNodeStyle & NodeStyle Property such like has shown in below code
Now When I click on TreeNode Image To select the TreeNode ,then that TreeNode Image Highlighted ,but then when we select another TreeNode Previous TreeNode Image also Remain Highlighted such like has Shown in Image Select.jpg
So What Can I do to Solve This Problem Please Replay me.
I have used <asp:TreeView> tag for treeview, and i have set SelectedNodeStyle & NodeStyle Property such like has shown in below code
<
asp:TreeView
ID
=
"TreeView1"
ShowLines
=
"false"
ShowExpandCollapse
=
"true"
runat
=
"server"
Height
=
"330px"
ExpandDepth
=
"10"
CssClass
=
"Normal"
ForeColor
=
"#585880"
Font-Size
=
"10px"
Font-Names
=
"Verdana"
NodeIndent
=
"10"
EnableClientScript
=
"true"
onclick
=
"javascript:call();"
>
<
SelectedNodeStyle
CssClass
=
"treeStyleNodeSelect"
ImageUrl
=
"~/Images/leaf.gif"
/>
<
NodeStyle
CssClass
=
"treeStyleNode"
ImageUrl
=
"~/Images/leaf.gif"
/>
</
asp:TreeView
>
Now When I click on TreeNode Image To select the TreeNode ,then that TreeNode Image Highlighted ,but then when we select another TreeNode Previous TreeNode Image also Remain Highlighted such like has Shown in Image Select.jpg
So What Can I do to Solve This Problem Please Replay me.