Jump to content

ShivaPrasadm

Members
  • Posts

    6
  • Joined

  • Last visited

ShivaPrasadm's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi all, i have loaded a XML and XSL file and transformed the files.I have the tranformed Html object. how can i read all the fields in the html and store it in an varialble. Any help would be appreciated.Thank you
  2. Can anyone tell me how can i call a template on click of a checkbox. I am trying to enable or disable another checkbox on the click.Please reply if u need more info on the que
  3. Thank you for the replyplease find the XML code below<modalities> <modality> <name>Any</name> <desc>Any</desc> </modality> <modality> <name>CR</name> <desc>Computed Radiography</desc> </modality> </modalities> I know that ANY and CR will be printed. But i am not able to understand how.can u explain meThank u
  4. <td width="4%"></td> <td ><xsl:value-of select="node()"/></td> <xsl:variable name="id" select="no"/> <td wrap="nowrap"> <input type="checkbox" value="{name}"> <xsl:attribute name="name"> <xsl:text>CONTROL</xsl:text> <xsl:value-of select="$id"/> </xsl:attribute> <xsl:attribute name="onClick">javascript:Control_Click(this)</xsl:attribute> <xsl:if test="selected= 1"> <xsl:attribute name="checked">checked</xsl:attribute> </xsl:if> </input> </td> Can anyone please explain me what will be printed in the place of CONTROL .. and how?
  5. We can use the below methods to load an XML file to XSL code.In documents i found that 1st method can be used for any advanced browser. second one for IE 5 and older but i dont want to use activeXobject in my project, So can i use the 1st method for IE6 and above. Will there be any effects if i use ist method in IE? 1)var xmlhttp=new XMLHttpRequest()2)var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  6. Hi i am new to the XSLT coding.I am trying to load a XML document in XSL, I am using IE8 to display the HTMLmy question is can i use the "XMLHttpRequest" object to read data from XML. Thank you for your help and valuable time RegardsShiva
×
×
  • Create New...