User Portlet User Portlet

Discussions
I need to create a CDF application in the Wolfram Cloud that is capable of printing and downloading output (equivalent to Export in Mathematica) when accessed by users. It seems like the [Producer plan][1] should allow me to do that but it is not...
The Workbench is never required as a platform for creating Mathematica applications.  If your application is going to be only a few pages long I recommend that you don't even think of learning to use the Workbench for such a small project.  However,...
The With basically converts the i index into a number instead of a variable.  That way your app is making reference to i as a number instead of a local variable which would be unrecognizable after you use it the first time.  This happens because...
I see.  To my knowledge you should export lists rather than formated data.  I assume that Grid and TableForm are recognized by Export but maybe the options are creating the problem.  I recommend you to do something linke this to reshape your dataset...
It seems like there is a bug in the code generating your lines.  Sometimes what works fine in the Global context may not work fine in other contexts like that created by a DynamicModule.  This problem is more common when you have mix of Global and...
Based on the feedback received for my contribution to this thread I'm posting the following information: - Follow this link to get a trial version of...
I have dedicated lots of time to approach problems like the one you are describing. This short screencast of the of my main programming project, BEST Viewpoints, may help demonstrate the level of complexity of...
As a long time Mathematica user, in many cases I found myself recreating the same code for the same type of data manipulation or analysis needs. Long story short, I decided to create an application which helps me make better use of my time...
I appreciate your replies and both are useful (no problem with Spanish ;), however I'm more in the lines of getting advanced documentation online where the process of creating packages with multiple m files that "talk to each other" and how to call...