Most grails controller action names related news are at:
Layout Mechanisms in Grails 20 Apr 2012 | 04:08 pm
Grails is a powerful framework for building cool stuff in Groovy. This post is about structuring the layout of web applications to avoid copy-paste. Grails contains several powerful mechanisms for thi...
The Groovy Mode for Emacs 10 Aug 2011 | 08:56 am
Over the years there has been no shortage of Groovy modes for Emacs. They all had an irritating tendency to stumble even on common language constructs. I was very happy to find a new version that seem...
More grails controller action names related news:
Grails: Controller and Action Names in GSP soderstrom.se 3 Feb 2011 | 08:39 pm
Grails is a powerful framework for building web applications in Groovy. This post is about a tiny little corner of Grails development. The presentation layer in Grails, also known as views, is built ...
Custom Action Method for Export to Excel devtechie.com 20 Jun 2012 | 07:58 pm
Today we will look at how to build Export to Excel functionality by deriving new type from ActionResult class. To get started, lets setup following: An ASP.NET MVC project New controller with name ...
Using Polymorphic urls and paths to create dynamic routes in Ruby on Rails paulsturgess.co.uk 30 Nov -0001 | 12:00 am
Dynamic named routes in Ruby on Rails are really useful when you want to generate a url but you don't necessarily know which records it will be for. For example if have a controller action that is use...
Intel 8051 Micro controller pdfee.org 11 Aug 2012 | 05:21 pm
August 28, 2008. Y.H.Dandawate. 2. Basics. ?. What are Micro controller’s ? ?. Why the name Micro controller ? Basically used for control actions.It is used to … Features of 8051 ? 8 bit ALU. ? 16 bit...
Ext JS + Grails RESTful Web Services 實作問題之 PUT 表單資料 blog.lyhdev.com 31 Jul 2013 | 01:39 pm
在 Grails 實作 RESTful Web Services 的服務時,CRUD 分別用以下 action 定義: (CRUD Name) = (HTTP Method Name) = (Grails Action Name) CREATE = POST = save READ = GET = show UPDATE = PUT = update DELETE = DELETE = ...
Redmine 1.4 & Wiki homepage bilot.com 8 Jun 2012 | 02:17 pm
If the starting page must be a wiki page (f.i. http://gatatac.net/projects/redminewikistartpage/wiki), then Controller: wiki Action: show Id: must be an empty string Extra argument name: pro...
Magento – All about Pre-Dispath and Post-Dispatch Dynamic Events anyknowledge.com 27 Jul 2012 | 06:54 pm
Whenever any Controller method / action is executed by Magento as per the User Request, then a particular common event related to that method name will always get fired. What happens internally is des...
zendframework禁用laydout视图 songyue198.com 24 May 2013 | 01:27 pm
禁用layout 控制器代码: $this->_helper->layout()->disableLayout(); 使用其他视图显示 控制器代码: $this->render($action = null, $name = null, $noController = false); $this->_forward($action, $controller = null, $module =...
Grails Goodness: Using the header Method to Set Response Headers mrhaki.blogspot.com 14 Aug 2013 | 06:26 pm
Grails adds a couple of methods and properties to our controller classes automatically. One of the methods is the header() method. With this method we can set a response header with a name and value. ...
Grails Goodness: Using the header Method to Set Response Headers groovy.dzone.com 16 Aug 2013 | 10:17 am
Grails adds a couple of methods and properties to our controller classes automatically. One of the methods is the header() method. With this method we can set a response header with a name and value. ...