.NET, jQuery, SQL, and between
my notepad (These postings are provided "AS IS" with no warranties, and confer no rights.)
Site Sections
Home
Contact
Syndication
Login
Posts
6
Comments
22
Trackbacks
0
JavaScript
There are 3 entries for the tag
JavaScript
ASP.Net TreeView - scroll to the expanded node
Technorati Tags: ASP.NET,TreeView,jQuery When we expand TreeView node JavaScript function TreeView_ToggleNode gets executed (it’s part of the TreeView control itself). So we will “override” this function and add our own functionality to perform scroll to the expanded node. To find source code of TreeView_ToggleNode function you can use IE Developer Toolbar or Firebug. I removed some code from this function that I don’t need to make it shorter. Here is the result. Everything should be pretty self...
Share This Post:
Short Url:
http://wblo.gs/Zo8
Posted On
Wednesday, January 27, 2010 1:05 AM
|
Feedback (3)
ASP.Net TreeView - scroll to the selected node
Technorati Tags: ASP.NET,TreeView,jQuery If we have TreeView inside of the div with the fixed width and height we want selected node to be visible after postback. Here is small JavaScript function that does this (you don’t have to use jQuery as I did to get the result): 1: function ScrollToSelectedNode() 2: { 3: //* get selected node id 4: //* 'tvwScrollTo' - is our tree view id 5: var selectedNodeID = $('#<%=tvwScrollTo.ClientID %>_SelectedNode').val(); 6: 7: if (selectedNodeID != '') 8: {...
Share This Post:
Short Url:
http://wblo.gs/Zo6
Posted On
Wednesday, January 27, 2010 12:25 AM
|
Feedback (7)
Get ASP.NET TreeView – get selected node id on the client side
Technorati Tags: TreeView,ASP.NET,JavaScript TreeViewClientID_Data.selec... where TreeViewClientID_Data is the name of the TreeView javascript object that has “selectedNodeID” property. We can easily load this object and get selected node id like this: 1: Sys.WebForms.PageRequestMan... 2: 3: function EndLoadedHandler(sender, args) 4: { 5: //* make sure that object is fully loaded 6: var data = eval('<%=tvwScrollTo.Cli... %>_Data');...
Share This Post:
Short Url:
http://wblo.gs/Znq
Posted On
Monday, January 25, 2010 11:04 PM
|
Feedback (1)
Archives
April, 2010 (1)
January, 2010 (3)
December, 2009 (2)
Post Categories
jQuery
SQL
ASP.NET
Silverlight
Tag Cloud
ASP.NET
JavaScript
jQuery
Silverlight
TreeView
Copyright © 2005 vladimirl
This work is licensed under a
Creative Commons License