Jump to content

Search the Community

Showing results for tags 'tunitreenode'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 2 results

  1. Подскажите пожалуйста, это свойство вообще рабочее или заглушка? Как не пытался, не получается в рантайме скрыть ноду у дерева.
  2. Hi, is it possible to access the data of a UniTreeNode in javascript on the page? I could not figure out how to do this. Sencha treenode also has a data-property which can be accessed, but this is obviously not the same. I added a value to a UniTreeNode like so: type TNodeInfo = class(TObject) ID: Integer; scrollTo: String; end; procedure addNode(NavTree: TUniTreeView; ID: Integer; sText, sAnchor: String); var Nd: TUniTreeNode; Ni: TNodeInfo; begin Ni := TNodeInfo.Create; Ni.ID := ID; Ni.scrollTo := sAnchor; Nd := NavTree.Items.Add(nil, sText); Nd.Data := Ni; end; In ExtEvents "itemclick" I can access record.data, but my added ID and scrollTo - properties are not available. Thanks for help. Steve
×
×
  • Create New...