Javascript in  XSLT?

in OC4J,I write a XSLT as follows:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.1">
<xsl:strip-space elements="doc chapter section"/>
<xsl:output method="xml" encoding="GBK" indent="yes"/>
<xsl:template match="doc">
<html>
<script language="JavaScript">
for(i=0;i!=3;i++){      //!!!!!,it is "!="
alert("aa");
</script>
<body bgcolor="#f0d0a0" text="#202040">
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
the run a xml with this xsl is ok;but when I change the
JavaScript "1!=3" into "i<3",the new xsl is as following:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.1">
<xsl:strip-space elements="doc chapter section"/>
<xsl:output method="xml" encoding="GBK" indent="yes"/>
<xsl:template match="doc">
<html>
<script language="JavaScript">
for(i=0;i<3;i++){      //!!!!!,it is "<"
alert("aa");
</script>
<body bgcolor="#f0d0a0" text="#202040">
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
when I run with the same xml,it reports:
java.lang.NullPointerException at
org.apache.xalan.transformer.TransformerImpl.createResultContentH
andler(TransformerImpl.java:1059) at
org.apache.xalan.transformer.TransformerImpl.createResultContentH
andler(TransformerImpl.java:1000)
     at org.apache.xalan.transformer.TransformerImpl.transform
(TransformerImpl.java:1115)
     at com.evermind[Oracle9iAS (1.0.2.2) Containers for
J2EE].servlet.XSLServlet.service(XSLServlet.java:290)
     at javax.servlet.http.HttpServlet.service
(HttpServlet.java:336)
     at com.evermind[Oracle9iAS (1.0.2.2) Containers for
J2EE].server.http.HttpRequestHandler.processRequest
(HttpRequestHandler.java:647)
     at com.evermind[Oracle9iAS (1.0.2.2) Containers for
J2EE].server.http.HttpRequestHandler.run
(HttpRequestHandler.java:189)
     at com.evermind[Oracle9iAS (1.0.2.2) Containers for
J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:62).
how do I write the comparison literal "<"?

You can escape the "<" symbols within the Javascript with &lt;
for fairly simple/small sets of code. We're generating a good
bit of js and editing with all the escapes in place gets a bit
tedious. We're getting around this by escaping the entire block
with <xsl:text output-escaping="yes"><[CDATA[ immediately before
the <script> tag and ]]></xsl:text> after the </script> tag.
This works fairly well, albeit there are issues whent the js
needs to access xsl data, but that can usually be overcome by
placement.
rob.

Similar Messages

  • CS3 - Getting Multiple Error Messages Related to Javascript/Spry/XSLT

    In the last couple of days, I have been getting endless error messages from DW CS3. Messages like:
    Javascript error while executing onLoad in PageManager.
    Spry.htm has configuration that is invalid.
    XSLT.htm has configuration that is invalid.
    Also, my Undo doesn't work anymore.
    I am NOT trying to make any fancy pages with Javascript, Spry, XSLT, or anything to that effect. Mostly, I just make basic HTML pages.
    I'm guessing that something has been accidentally turned on that is not supposed to be turned on. How do I turn it off? (And get my Undo back?)
    Thanks!

    Have you tried this KB article?
    Troubleshooting JavaScript errors in Dreamweaver

  • Embedding javascript with xslt generated html

    hi,
    I'm using xml/xslt with xdk to generate html with embedded javascript. The solution works except that I am having problem with proper inclusion of the javascript file. I uset this line:
    <xsl:template match="/">
    <head><title>Screener</title>
    <!-- Javascript declarations -->
    <script language="javascript1.2" src="./screener.js">
    </script>
    I have tested the xslt sheet via IE5 and msxml3 processor and it works fine including loading the javascript file.
    Now using XDK and servlet it doesn't seem to retrieve the javascript file so all javascript function do not work.
    I would appreciate any help.
    thanks,
    ted
    null

    hi brian,
    All those files are in same directory i changed the .xsl file to be i am changing at the right place.
    However, as backup i tried the following:
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"/>
    <script language="javascript1.2">
    <![CDATA[
    <!--
    var isNav4, isIE4;
    if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
    isNav4 = (navigator.appName == "Netscape")? true:false
    isIE4 = (navigator.appName.indexOf("Microsoft" != -1)) ? true:false
    if (isNav4) { document.write("<B>It's a Navigator!</B>");}
    else { document.write("It's an Explorer!");}
    //== shared global variables
    function _alert(e)
    alert(e);
    -->
    ]]>
    </script>
    and here is the html output:
    <html>
    <head>
    <title>Screener</title>
    <script language="javascript1.2">
    &#60;!--
    var isNav4, isIE4;
    if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
    isNav4 = (navigator.appName == "Netscape")? true:false
    isIE4 = (navigator.appName.indexOf("Microsoft" != -1)) ? true:false
    if (isNav4) { document.write("&#60;B>It's a Navigator!&#60;/B>");}
    else { document.write("It's an Explorer!");}
    //== shared global variables
    function _alert(e)
    alert(e);
    -->
    </script>
    </head>
    So everything is being output correctly except for <!--; is there a way around this problem? If I leave out <!-- --> it works but
    i was wondering if the present behavior is what's supposed to happen.
    thanks,
    ted
    null

  • Why is J2EE so complex???

    Hi, there,
    I'm studying J2EE right now, I have knowledge of Java and Oracle, but I still find J2EE is very complex,
    many many APIs need to study, many many concepts need to study, many many related tools need to study, even I have to study HTML, JAVASCRIPT,XML,XSLT,CSS,JSTL, WSDL, UDDI,JIND, JAXP(R,M,...),SAX,........Descriptor LANGUAGE,STRUTS,JSF,SOAP,JMS,JTA,ANT, TOMCAT................ I really want to select .Net to develop my project, what's more, I want to know what's the difference betwwen J2EE apps and JWSD apps???? because I find the method of deploy is very different, J2EE is deploytool, but JWSD just need to use ant , pls tell me, thanks !!!!!!

    Irrelevant to the topic. But had to ask. What benefit do you get by posting the same question in almost every forum. Or atleast I can see that you have posted it in 5 or more forums. You are just wasting everybody's time here.
    Secondly, HTML, Javascript, CSLT, CSS etc.. are not J2EE. Same with ANT, SOAP etc..They have nothing to do with J2EE or you learning J2EE.
    I believe that you are just looking at J2EE from a wrong perspective. You are just trying to search for J2EE terms, tools, implementations and trying to learn it in a week and claim to be a J2EE master. It does not work that way.
    J2EE is comprised of many things. You do not have to learn everything to learn J2EE. Based on your needs, you learn what is required.
    This is the same with any development framework. I do not know .Net a lot, but I am sure you have the same complexities there.
    Of course, you cannot look at J2EE and learn it in a day. It has evolved over time and there are so many good things in it.
    Take it step by step. Start with the tutorial
    http://java.sun.com/j2ee/tutorial/1_3-fcs/index.html
    Understand the basics. Understand the various pieces. I think that is the best way to start.
    As the second poster mentioned, it is a really great framework. I have been working with it for 3 years now and enjoy everyday of my work.

  • Open XML and using xslt with JavaScript

    Hello,
    I want the user to be able to choose an XML-file. This XML-file should not be placed in InDesign, there is not even a document needed for my script. All I need is a variable, containing the file. However, the XML-file should be transformed with xslt into another XML-file. How do I do this?
    This is how I open the first XML-file, the one that should be transformed:
       var xmlDoc = File.openDialog ("Choose XML");
       if (xmlDoc == null) {return;}
        xmlDoc.open("r");
        xmlDoc = xmlDoc.read();
        xmlDoc = new XML(xmlDoc);
    I can adress different nodes and use xmlDoc as an XML-file, so that's fine, but how do I transform it?
    I read the Scripting Guide and tried this:
        var myDocument = app.documents.add();
        var myXMLImportPreferences = app.xmlImportPreferences;
        myXMLImportPreferences.transformFilename = "c:\myTransform.xsl";
        var xx = myDocument.importXML(File.openDialog ("XML"));
    However, it's not exactly what I want since I have to create a document and it's not working either, since xx stays undefined.
    Thanks for your help.

    You can't get exactly what you want.
    Your first code example uses the InDesign JavaScript interpreter's XML support, called E4X. It has absolutely nothing to do with the InDesign document object model or InDesign's internal support for XML. It exists only within the JavaScript interpreter. It does not support XSLT transformations.
    Your second example leverages InDesign's built-in XSLT support (I'm not too sure how this works...); but that is only useful when importing XML into
    InDesign, which, as you have learned, requires a document.
    In the first example, you could call out to an external invokation of xsltproc and read in the input. How to do that differs for Windows and Mac.
    In the second example, you could export the XML from your Document back out to an XML file and read it back in with E4X.
    None of this is very appealing. What do you really need to do?

  • Can I use some JavaScript in an XSLT stylesheet?

    I have two related (I think) problems.
    I am using Dreamweaver CS4 in Windows XP, Service Pack 3.
    I have created an XSLT stylesheet that transforms a simple XML file into HTML. I have a very short JavaScript that writes the day's date into the document. It is a script that I have used in many other HTML pages. The XSLT stylesheet also has a Spry widget, an accordion, in one of its DIV elements. Originally, I developed the accordion as part of a Dreamweaver template, and it works fine there. I cannot get the scripts to work completely in Firefox and Internet Explorer.
    If I just link in the external JavaScript files, the XML document displays correctly in both browsers. Note that MY external JavaScript file is the definition of one function, today(). The other JavaScript file is the Spry js file for the accordion widget. Of course the widget displays, but is not functional.
    If I add the script to display the date (document.write(today()); document.close();) in one of the DIVs, Internet Explorer(7) displays the date correctly in the correct location AND displays all the other content correctly, including the accordion, which of course is not functional. However, FireFox (latest version) displays ONLY the date in a white background and NOTHING else, such as background image, other DIVs with content, the accordion widget, etc.
    If I add the script to instantiate the accordion widget, FireFox displays the date and nothing else, as before. Internet Explorer displays the date, the other content, and the accordion widget, as before, but the widget is still not functional, that is, the accordion does not close or open when the panels are clicked.
    So, do I have to be extra careful on where I place scripts in an XSLT? Or is there some reason why scripts in an XSLT file do not work? It seems that once the browser transforms the XML file into HTML, which includes the scripts, it should display correctly.
    Thanks,
    Van

    Not sure what you mean by a CDATA section. But here is the XSLT file showing the template for the root element. The script is included using a <script> element, inserted in the <head> element. Should it be some place else?
    <?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="Trial procedure.xml" -->
    <!DOCTYPE xsl:stylesheet  [
        <!ENTITY nbsp   "&#160;">
        <!ENTITY copy   "&#169;">
        <!ENTITY reg    "&#174;">
        <!ENTITY trade  "&#8482;">
        <!ENTITY mdash  "&#8212;">
        <!ENTITY ldquo  "&#8220;">
        <!ENTITY rdquo  "&#8221;">
        <!ENTITY pound  "&#163;">
        <!ENTITY yen    "&#165;">
        <!ENTITY euro   "&#8364;">
    ]>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
    <xsl:template match="/">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title><xsl:value-of select="MovexUser/Title"/></title>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="resources/navigatorSpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body id="body">
    --- The JavaScript funtions are called inside DIV elements here. ---
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>

  • How to get no of rows in xslt table in javascript function

    Hi ,
    I have an XSLTtable and I want to access the no of rows in java script function.
    Please help me in this issue.
    Thanks in advance,
    Raj.

    Hi Raj
    Use xslt count function for this.
    Use xslt to generate value like
    <input type="hidden" id="NoOfRow" value="{count(//Row)}"/>
    You can use value of hidden variable using javascript
    Regards
    Anshul

  • AccessControlException while running XSLT started from JavaScript in jre1.5

    All,
    My applet does XSLT using javax.xml.transform.Transformer.
    The transformation is initiated with a JavaScript call to Java and it is implemneted using AccessController.doPrivileged(...).
    It worked fine under JRE 1.4.2 but it throws exception under JRE 1.5.0:
    ERROR:  'java.security.AccessControlException: access denied (java.io.FilePermission /tmp/t.xml read)'
    javax.xml.transform.TransformerException: com.sun.org.apache.xalan.internal.xsltc.TransletException: java.security.AccessControlException: access
    denied (java.io.FilePermission /tmp/t.xml read)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Unknown Source)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Unknown Source)
    com.sun.org.apache.xalan.internal.xsltc.TransletException: java.security.AccessControlException: access denied (java.io.FilePermission /tmp/t.xml read)
            at com.sun.org.apache.xalan.internal.xsltc.dom.LoadDocument.documentF(Unknown Source)
            at GEN.topLevel()
            at GEN.transform()
            at com.sun.org.apache.xalan.internal.xsltc.runtime.AbstractTranslet.transform(Unknown Source)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Unknown Source)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Unknown Source)
            ...Any idea what could be changed in JRE 1.5 that it doesn't run now?
    Thanks,
    Attila

    Ive seen some stuff here were doPrivileged didn't always work (beans).
    Starting a thread from the signed applet that checks a parameter set
    by JScript every 500 ms fixed those problems (bug in doprivileged?).
    You might try to give all permission to all code in the java.policy to see
    if that will fix your problem and than try the threaded sollution.
    I assume that 1.5 recognises the signature of the applet and the client
    accepts is. And the java.policy has not been changed to disallow signed
    applets to do privileged stuff.
    Signing applets:
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post and reply 18 for the java class file using doprivileged
    Still problems?
    A Full trace might help us out:
    http://forum.java.sun.com/thread.jspa?threadID=656028

  • How to display transformed XML in flex? xslt processor w/o javascript?

    I have a tree view with a list of links. upon clicking the links it will display its contents in an iFrame.
    some of the links in my tree are, google.com, yahoo.com, and 2 xml files, 1 of which i have transfromed into html using xsl.
    google, yahoo and the xml file which i have not transformed display successfully in the iFrame. however the xml which i have transformed does not display anything. is there another way to display html in flex? or is there a way to display a transformed xml to html in flex.
    also is there another way to to use an xslt processor in flex without having to use javascript?

    In jsp page set content type to text/xml
    <%@ page contentType="text/xml" %>

  • Can I have JavaScript in an XSLT stylesheet?

    I posted this first on the Dreamweaver forum, and it was suggested that I post here instead...
    I have two related (I think) problems.
    I am using Dreamweaver CS4 in Windows XP, Service Pack 3.
    I have created an XSLT stylesheet that transforms a simple XML file into HTML. I have a very short JavaScript that writes the day's date into the document. It is a script that I have used in many other HTML pages. The XSLT stylesheet also has a Spry widget, an accordion, in one of its DIV elements. Originally, I developed the accordion as part of a Dreamweaver template, and it works fine there. I cannot get the scripts to work completely in Firefox and Internet Explorer.
    If I just link in the external JavaScript files, the XML document displays correctly in both browsers. Note that MY external JavaScript file is the definition of one function, today(). The other JavaScript file is the Spry js file for the accordion widget. Of course the widget displays, but is not functional.
    If I add the script to display the date (document.write(today()); document.close();) in one of the DIVs, Internet Explorer(7) displays the date correctly in the correct location AND displays all the other content correctly, including the accordion, which of course is not functional. However, FireFox (latest version) displays ONLY the date in a white background and NOTHING else, such as background image, other DIVs with content, the accordion widget, etc.
    If I add the script to instantiate the accordion widget, FireFox displays the date and nothing else, as before. Internet Explorer displays the date, the other content, and the accordion widget, as before, but the widget is still not functional, that is, the accordion does not close or open when the panels are clicked.
    So, do I have to be extra careful on where I place scripts in an XSLT? Or is there some reason why scripts in an XSLT file do not work? It seems that once the browser transforms the XML file into HTML, which includes the scripts, it should display correctly.
    For now, I am trying to create a whole page XSLT, not fragments.
    Thanks,
    Van

    Not sure what you mean by a CDATA section. But here is the XSLT file showing the template for the root element. The script is included using a <script> element, inserted in the <head> element. Should it be some place else?
    <?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="Trial procedure.xml" -->
    <!DOCTYPE xsl:stylesheet  [
        <!ENTITY nbsp   "&#160;">
        <!ENTITY copy   "&#169;">
        <!ENTITY reg    "&#174;">
        <!ENTITY trade  "&#8482;">
        <!ENTITY mdash  "&#8212;">
        <!ENTITY ldquo  "&#8220;">
        <!ENTITY rdquo  "&#8221;">
        <!ENTITY pound  "&#163;">
        <!ENTITY yen    "&#165;">
        <!ENTITY euro   "&#8364;">
    ]>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
    <xsl:template match="/">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title><xsl:value-of select="MovexUser/Title"/></title>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="resources/navigatorSpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body id="body">
    --- The JavaScript funtions are called inside DIV elements here. ---
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>

  • Compound filtering xslt list view web part with _dopostback using javascript/jquery

    Hello,
    I am filtering list view web part as same as the below post,
    http://dcsharepointchick.blogspot.in/2013/05/filter-sharepoint-list-with-partial-postback.html
    here I need to filter the web part with some another condition . I am trying to write another condition in filter attribute of _doPostback(), but it doesn't work.
    Please let me know is there any alternative to achieve compound filtering.
    Regards,
    Balakrishna M.

    Hi Balakrishna,
    According to your description, my understanding is that you want to filter the list view web part with more than one filters.
    I recommend to use the OOB Choice Filter web part to achieve this goal.
    Edit the page where the list view web part exists and then add the Choice Filter web parts to the page based on your need.
    More reference:
    http://office.microsoft.com/en-in/sharepoint-server-help/connect-a-filter-web-part-to-a-list-view-web-part-HA101785233.aspx#_Toc296943684
    Or you use the List Filter Plus Web Part to get the function.
    http://www.kwizcom.com/sharepoint-add-ons/sharepoint-list-filter-plus/overview/
    Here is the link to download the web part:
    http://www.kwizcom.com/sharepoint-add-ons/sharepoint-list-filter-plus/download/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How to call javascript to map to a perticular field in the XSLT

    Hi all,
    Is it possible to map to my target a file with the java script ?
    For eg.I wish to Display the current dat eand time of the system.
    For this I wrote a java script which displays the date and time .
    Please let me know how to use the same to mapp to the target.
    Thanks,
    Srinivasa

    HI
    see this link
    Dynamic folder - in payload Multiple Comm Channels to 1 Receiver, all same interface & mappings
    change accordingly for file name
    Regards
    Chilla

  • Firefox crashes when opens a large xslt file with has heavy javascript

    We have some pages designed by us in our company. That page is intended to add or edit the signatures created by us.
    When ever we click on add link firefox is getting crashed.
    We have around 300 or 400 links in our user interface, all the other links are working perfectly.
    Please help us in fixing this issue.

    And this links are working in previous version of mozilla as well as all version of IE.
    Issue is only with latest version.

  • How can I use JavaScript extention functions with Xalan for transforming XML with XSL

    While transforming standart XML and XSL files to HTML with this servlet:
    package mypackage1;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    import java.net.URL;
    import javax.xml.transform.*;
    import javax.xml.transform.stream.StreamSource;
    import javax.xml.transform.stream.StreamResult;
    import org.mozilla.javascript;
    public class Servlet2 extends HttpServlet
    private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException
    try
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Source xmlSource = new StreamSource(new FileReader("c:/aaa.xml"));
    Source xslSource = new StreamSource(new FileReader("c:/bbb.xsl"));
    Transformer transformer = tFactory.newTransformer(xslSource);
    transformer.transform (xmlSource, new StreamResult(out));
    catch (Exception e)
    e.printStackTrace();
    everything is going ok,
    but when try to use javascript function in XSL file, for example like in this:
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
    xmlns:lxslt="http://xml.apache.org/xslt" xmlns:my-ext="ext1"
    extension-element-prefixes="my-ext">
    <lxslt:component prefix="my-ext"
    functions="getdate">
    <lxslt:script lang="javascript">
    function getdate() {
    var d = new Date();
    return d.toUTCString();
    </lxslt:script>
    </lxslt:component>
    <xsl:template match="/">
    <p><xsl:copy-of select="my-ext:getdate()"/></p>
    </xsl:template>
    </xsl:stylesheet>
    recieve error-message:
    XSL-1000: (Fatal Error) Error while parsing XSL file (Extension function namespace should start with 'http://www.oracle.com/XSL/Transform/java/'.).
    What kind of namespace I should specify?

    Hello, Paul.
    I'm sure you may not use JavaScript as a language for creating XSLT extention functions with Oracle XDK Parser. This is since parser might have JavaScript interpreter to work with JavaScript, but it has not.
    If you need to build any XSLT extention functions you must build them as Java class' static methods.
    After that, you define the usage of the class by mean of namespace declaration as:
    xmlns:your-ns="http://www.oracle.com/XSL/Transform/java/yourpackage.Yourclass"
    (Prefix "http://www.oracle.com/XSL/Transform/java/" may differs if you use non-Oracle XML parser)
    and use class' static method in XSLT:
    <xsl:value-of select="your-ns.staticMethodName(paramsIfAny)"/>
    In your case you may wish to use standard Date class:
    xmlns:date="http://www.oracle.com/XSL/Transform/java/java.util.Date"
    <xsl:value-of select="date:toString(date:new)"/>

  • XSLT List View Web Part Layout

    Hello,
    In Visual Studio 2013 i'm working with the 'XSLT List View Web Part' to show lists i have created with the list item in VS.
    Is there anyway i can modify the view,group or order with ClientSide code as jquery, javascript ?
    I'm new in the app development for Sharepoint.
    I'm trying to find out what options i have. i Don't find much information on the web about this.
    Kind Regards,
    Kris

    Check if below can help you:
    http://www.bing.com/videos/watch/video/using-javascript-and-jquery-for-sharepoint-2013/10tiqat8f
    http://aaclage.blogspot.in/2013/08/example-how-to-use-accordion-jquery.html

Maybe you are looking for

  • Adobe Flash CS6 Brush Tool Not Smooth

    On my Flash CS6, my brush tool has been difficult lately. When I use my Wacom pen tablet and even my mouse, the strokes I draw "correct" too much and it causes an uneven flow. I have the pressure option on, and I draw with the pressure I want it stil

  • HT2490 How do I change my web browser's language?

    How do I change my web browser's language?

  • Alternative to File.delete() and deleteOnExit()

    Is there any GOOD way to delete physical files from a Java app running under Windows besides the File object's incredibly lame and emasculated delete() and deleteOnExit() methods? Despite my best efforts, I have yet to find ANY circumstances under wh

  • Ftp applescript

    I have a radio program that spits out a html file onto my HD of the current song playing.  I need a way to auto upload that html file to a web server via FTP.  I thought applescript but no dice.  The best script I can write doesn't even give me an er

  • Aperture images with iLife

    I know you can access Aperture images in iLife, but it doesn't let you access the versions that are so carefully edited. Does anyone know if this is possible without exporting versions as JPEGs and then reimporting? Along the same lines, sometimes I