aboutsummaryrefslogtreecommitdiff
path: root/files/pl/mozilla/tech/xul/własność/currentindex/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/mozilla/tech/xul/własność/currentindex/index.html')
-rw-r--r--files/pl/mozilla/tech/xul/własność/currentindex/index.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/files/pl/mozilla/tech/xul/własność/currentindex/index.html b/files/pl/mozilla/tech/xul/własność/currentindex/index.html
new file mode 100644
index 0000000000..5aaab3d796
--- /dev/null
+++ b/files/pl/mozilla/tech/xul/własność/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
+---
+<div class="noinclude"><span class="breadcrumbs XULRefProp_breadcrumbs">« <a href="/pl/docs/Dokumentacja_XUL" title="Dokumentacja_XUL">Dokumentacja XUL</a></span></div>
+<dl><dt> <code><span><a href="https://developer.mozilla.org/pl/docs/XUL/Własność/currentIndex">currentIndex</a></span></code>
+</dt><dd> Typ: <i>integer</i>
+</dd><dd> Ustawia indeks bieżącego aktywnego wiersza w <code><a href="/pl/docs/Mozilla/Tech/XUL/tree" title="tree">tree</a></code> (drzewie). Jeśli jest brak aktywnego wiersza, wartość będzie <code>-1</code>. Dla wielu zaznaczeń drzew, bieżącym indeksem jest ostatnio zaznaczony wiersz. Nie stosuj tej własności do zmiany zaznaczenia. Zamiast stosować metody obiektu <code><a href="pl/NsITreeSelection">nsITreeSelection</a></code> dostępnego przez <code>tree.view.selection</code>.
+</dd></dl>
+<div class="noinclude">
+<pre>// One way of retrieving the text of a cell.
+&lt;script language ="javascript"&gt;
+function treeRowClicked(){
+ var tree = Id("my-tree");
+ var selection = tree.contentView.getItemAtIndex( tree.currentIndex );
+ var foo = selection.firstChild.firstChild.getAttribute("label");
+ alert(foo);
+}
+&lt;/script&gt;
+
+&lt;tree id="my-tree" seltype="single" onselect="treeRowClicked()"&gt;
+ &lt;treecols&gt;
+ &lt;treecol label="Title" flex="1"/&gt;&lt;treecol label="URL" flex="1"/&gt;
+ &lt;/treecols&gt;
+ &lt;treechildren&gt;
+ &lt;treeitem&gt;
+ &lt;treerow&gt;
+ &lt;treecell label="joe@somewhere.com"/&gt;
+ &lt;treecell label="Ściśle tajne plany"/&gt;
+ &lt;/treerow&gt;
+ &lt;/treeitem&gt;
+ &lt;treeitem&gt;
+ &lt;treerow&gt;
+ &lt;treecell label="mel@whereever.com"/&gt;
+ &lt;treecell label="Zróbmy obiad"/&gt;
+ &lt;/treerow&gt;
+ &lt;/treeitem&gt;
+ &lt;/treechildren&gt;
+&lt;/tree&gt;
+</pre>
+</div>