diff options
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.html | 44 |
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. +<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> +</pre> +</div> |