I have a problem that seems to be quiet common but for which I haven\'t found a solution yet:
When trying to publish a webapp using rCharts Parcoords, I get this err
I found the solution myself: showOutput needs the exact path to the parcoords-library, in my case: C:\Users\fklose\Desktop\Launching_Parcoords\libraries\widgets\parcoords.
So I changed the showOutput-line from
tabPanel("Multicolor",showOutput("chart1", "parcoords"))
to
tabPanel("Multicolor",showOutput("chart1", "libraries/widgets/parcoords"))
And the publishing worked :)