Skip to content

Instantly share code, notes, and snippets.

@ssinganamalla
ssinganamalla / senchaappplugincopyallclasses.xml
Last active December 17, 2015 09:19
.sencha/app/plugin file to copy the all-classes.js to main
<!--
<target name="-after-generate-model">
... use ${args.path}, ${args.name} and ${args.fields} as needed ...
</target>
Other targets are similar. There are properties prefixed with "args." and the name of
the command line option that hold the parameters for the command.
-->
<!-- copy this in the .sencha/app/.plugin xml file below -->
<target name="-after-app-build">
@ssinganamalla
ssinganamalla / HomeController
Created May 15, 2013 18:38
Preparing .NET MVC for Extjs using Controller
public class HomeController : Controller
{
public ActionResult Default()
{
return this.Redirect("/Home/main");
}
public ActionResult Index()
{