Jump to content
  • 0

выражение в имени атрибута


Быколай
 Share

Question

Добрый всем день, кто в xsl шарит лучше моего.

Есть узел xml где хранятся в виде атрибутов переменные зависящие от локализации:


<locale prefix="ru" title="русский">
<vars error_404="Ошибка 404" new_var="новая переменная" title="название" locale="локализация" code="код" value="значение" show="показать" prefix="префикс" save="сохранить" reset="очистить" let_select="выберите" or="или" start_datetime="начало публикации" end_datetime="дата окончания публикации"/>
</locale>

есть также цикл, который выводит список чекбоксов из узла вида


<!-- xml -->
<preset id="5" set_name="1" start_datetime="1" datetime="0" end_datetime="0" comments="0" anons="0" text="0" images="0" files="0" title="0" description="0" keywords="0" tags="0" categories="0"/>


<!-- xsl -->
<xsl:for-each select="presets/preset">
<section id="{@id}" style="display: none;">
<h3><xsl:value-of select="@set_name"/></h3>
<ul>
<xsl:for-each select="@*">
<li><label for="{name()}"><xsl:value-of select="____от тут надо прописать что-то типо: //locale/vars/@name()"></xsl:value-of></label>
<xsl:if test="(. = 1)">
<input name="{name()}" type="checkbox" id="name()" value="1" checked="checked"/>
</xsl:if>
<xsl:if test="(. != 1)">
<input name="{name()}" type="checkbox" id="name()" value="1"/>
</xsl:if>
</li>
</xsl:for-each>
.....

собственно вопрос: можно как-то составить выражение для <xsl:value-of select="//locale/vars/@name()"/> что бы выбирался атрибут в зависимости от текущего для цикла name()?

может тут надо подшаблон с параметром заюзать? если да, то намекните как, я в них не особо силён.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

На винграде вопрос решил.

В общем, если кому понадобится, вот решение:


<xsl:variable name="curname" select="name()"/>
<xsl:value-of select="//locale/vars/@*[name() = $curname]">

тему можно фтопку закрыть :)

Edited by Быколай
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy