Browse Forum Posts by Tags

Showing related tags and posts for the Forums application.

  • Re: Hook TreeView Up to Remote SOA Service?

    Posted to SOA.UI for .NET by milos on Apr 16, 2010
    I had assumed that it was TreeView for Silverlight that you were referring to. In the case of the AJAX TreeView, SoaService must be set to the contract name, and it's web.config (and the ScriptManager) which are used to configure the service to ensure that proper JS proxy classes are generated on the client. To answer your second question: Yes, you can use any kind of service, as long as it is registered with the ScriptManager. Use the WebService and WebServiceMethod properties of the TreeView...
  • Re: Hook TreeView Up to Remote SOA Service?

    Posted to SOA.UI for .NET by milos on Apr 13, 2010
    Calvin, It sounds like you may want to set TreeView's SoaServiceUrl property to the absolute URL of the WCF service (.svc). Is that an option?
  • Re: TreeView in a NavBar

    Posted to NavBar for Silverlight by jovca on Dec 1, 2009
    Hi, Adding TreeView to NavBar is now easy, starting with 2009.3 SP1. More details in this blog post .
  • Re: TreeView in a NavBar

    Posted to NavBar for Silverlight by jovca on Nov 25, 2009
    Hi, There's no easy way to do this right now. We're publishing a service pack next week that will address this issue, among other improvements. You could manually drill into NavBar's visual tree, attach listeners to SizeChanged events on appropriate ScrollContentPresenters inside the control, and manually resize the treeview in event handlers. I do recommend waiting for the service pack, though. Thanks, Jovca
  • Re: Bug in TreeView Drag and drop?

    Posted to TreeView for Silverlight by jovca on Sep 25, 2009
    Problem was resolved in 2009.2.
  • Selected Node using ClientTemplates

    Posted to TreeView for ASP.NET AJAX by joshuadavidlee on Sep 24, 2009
    I would like to be able to have a SelectedNode Template for my treeview. So far I have made a SelectedNode Template and using the onSelect event I have changed its template using javascript and it works fine. However I do not know how to get the PREVIOUS node so I can reset its client template to the normal template? Any examples or advice on this one?
  • I am unable to use TreeView ClientTemplate to bind data

    Posted to TreeView for ASP.NET AJAX by joshuadavidlee on Sep 24, 2009
    I always get this error when trying to bind to a ClientTemplate: Microsoft JScript runtime error: Object doesn't support this property or method here is my code: ## DataItem.GetProperty('Text').get_value() ##
  • Drag across trees with nodes created runtime

    Posted to TreeView for ASP.NET AJAX by LochDhu on Sep 19, 2009
    I am trying to get DragAcross trees working - I took the client-side demo you have as a start. The two trees are first loaded by the xml data you have for the demo. DragAcross trees works fine. However, when I perform an ajax postback and programmatically clear the nodes from both trees and add new ones the drag & drop does not work. The javascript never gets fired. Any ideas? function TreeView_onNodeBeforeMove(sender, eventArgs) { var movingNode = eventArgs.get_node(); var sourceTreeView = eventArgs...
  • Re: SilverLight Treeview Theme Issue

    Posted to TreeView for Silverlight by jovca on Sep 18, 2009
    Hi, True, it's a bug in the theme. Thanks for reporting it.
  • Re: Remove Treeview Border

    Posted to TreeView for Silverlight by jovca on Sep 18, 2009
    Hi, This should do the trick (you're almost there): tvSiteMap.BorderThickness = new Thickness(0); tvSiteMap.BorderBrush = new SolidColorBrush(Color.FromArgb(0, 255, 255, 255)); // transparent tvSiteMap.HeaderVisibility = Visibility.Collapsed;
Page 1 of 3 (23 items) 1 2 3 Next >