From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- .../currentindex/index.html" | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 "files/pl/mozilla/tech/xul/w\305\202asno\305\233\304\207/currentindex/index.html" (limited to 'files/pl/mozilla/tech/xul/własność/currentindex/index.html') diff --git "a/files/pl/mozilla/tech/xul/w\305\202asno\305\233\304\207/currentindex/index.html" "b/files/pl/mozilla/tech/xul/w\305\202asno\305\233\304\207/currentindex/index.html" new file mode 100644 index 0000000000..5aaab3d796 --- /dev/null +++ "b/files/pl/mozilla/tech/xul/w\305\202asno\305\233\304\207/currentindex/index.html" @@ -0,0 +1,44 @@ +--- +title: currentIndex +slug: Mozilla/Tech/XUL/Własność/currentIndex +tags: + - Własności_XUL +translation_of: Archive/Mozilla/XUL/Property/currentIndex +--- +
« Dokumentacja XUL
+
currentIndex +
Typ: integer +
Ustawia indeks bieżącego aktywnego wiersza w tree (drzewie). Jeśli jest brak aktywnego wiersza, wartość będzie -1. Dla wielu zaznaczeń drzew, bieżącym indeksem jest ostatnio zaznaczony wiersz. Nie stosuj tej własności do zmiany zaznaczenia. Zamiast stosować metody obiektu nsITreeSelection dostępnego przez tree.view.selection. +
+
+
// One way of retrieving the text of a cell.
+<script language ="javascript">
+function treeRowClicked(){
+    var tree = Id("my-tree");
+    var selection = tree.contentView.getItemAtIndex( tree.currentIndex );
+    var foo = selection.firstChild.firstChild.getAttribute("label");
+    alert(foo);
+}
+</script>
+
+<tree id="my-tree" seltype="single" onselect="treeRowClicked()">
+  <treecols>
+    <treecol label="Title" flex="1"/><treecol label="URL" flex="1"/>
+  </treecols>
+  <treechildren>
+    <treeitem>
+      <treerow>
+        <treecell label="joe@somewhere.com"/>
+        <treecell label="Ściśle tajne plany"/>
+      </treerow>
+    </treeitem>
+    <treeitem>
+      <treerow>
+        <treecell label="mel@whereever.com"/>
+        <treecell label="Zróbmy obiad"/>
+      </treerow>
+    </treeitem>
+  </treechildren>
+</tree>
+
+
-- cgit v1.2.3-54-g00ecf