Differenze
Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.
Entrambe le parti precedenti la revisione Revisione precedente Prossima revisione | Revisione precedente | ||
custom:development_creazione_nuovo_menu_terzo_livello_leafitem [2023/03/10 10:41] giorgio.scali |
custom:development_creazione_nuovo_menu_terzo_livello_leafitem [2023/03/10 10:43] (versione attuale) giorgio.scali |
||
---|---|---|---|
Linea 12: | Linea 12: | ||
Esempio: | Esempio: | ||
<code xml> | <code xml> | ||
- | <accordionPaneItem name="slm1" label="Second Level Menu Item" image="" type="leafItemContainer"> | + | <accordionPaneItem name="slm1" label="Second Level Menu Item" image="" type="leafItemContainer"> |
- | <leafItem name="tlm1" label="Thirdd Level Menu Item" image="" type="gwClassList"> | + | <leafItem name="tlm1" label="Thirdd Level Menu Item" image="" type="gwClassList"> |
<parameter name="gwClassName" value="class_name"></parameter> | <parameter name="gwClassName" value="class_name"></parameter> | ||
</leafItem> | </leafItem> | ||
- | </accordionPaneItem> | + | </accordionPaneItem> |
</code> | </code> | ||
Linea 40: | Linea 40: | ||
Per definire una nuova tipologia di leafItem semplicemente popolare l'attributo //type// del tag //leafItem// con un valore univoco. | Per definire una nuova tipologia di leafItem semplicemente popolare l'attributo //type// del tag //leafItem// con un valore univoco. | ||
Esempio per un ipotetico leafItem di type gwPluginType: | Esempio per un ipotetico leafItem di type gwPluginType: | ||
- | + | <code xml> | |
- | <accordionPaneItem name="slm1" label="Second Level Menu Item" image="" type="leafItemContainer"> | + | <accordionPaneItem name="slm1" label="Second Level Menu Item" image="" type="leafItemContainer"> |
- | <leafItem name="tlm1" label="Thirdd Level Menu Item" image="" type="gwPluginType"> | + | <leafItem name="tlm1" label="Thirdd Level Menu Item" image="" type="gwPluginType"> |
- | </leafItem> | + | </leafItem> |
- | </accordionPaneItem> | + | </accordionPaneItem> |
+ | </code> | ||
In risposta al click su un leafItem, di norma viene aperta una specifica scheda (fanno eccezione solo particolari tipi di leafItem, gestiti ad hoc, come gwAction). | In risposta al click su un leafItem, di norma viene aperta una specifica scheda (fanno eccezione solo particolari tipi di leafItem, gestiti ad hoc, come gwAction). | ||
Linea 54: | Linea 55: | ||
<code java> | <code java> | ||
- | @RequestMapping(value = "{projectType}/{projectName}/gwPluginTypeWrapper", method = RequestMethod.POST, produces = "text/html; charset=utf-8") | + | @RequestMapping(value = "{projectType}/{projectName}/gwPluginTypeWrapper", method = RequestMethod.POST, produces = "text/html; charset=utf-8") |
- | @ResponseBody | + | @ResponseBody |
- | public ModelAndView gwPluginTypeWrapper( | + | public ModelAndView gwPluginTypeWrapper( |
@PathVariable String projectType, | @PathVariable String projectType, | ||
@PathVariable String projectName, | @PathVariable String projectName, | ||
@RequestBody HashMap<String, Object> hashMap, | @RequestBody HashMap<String, Object> hashMap, | ||
Locale locale | Locale locale | ||
- | ){ | + | ){ |
- | ModelAndView modelAndView = null; | + | ModelAndView modelAndView = null; |
try{ | try{ | ||
- | String projectTypePath = projectType.toLowerCase(); | + | String projectTypePath = projectType.toLowerCase(); |
- | modelAndView = new ModelAndView(projectTypePath+"/gwPluginTypeWrapper"); | + | modelAndView = new ModelAndView(projectTypePath+"/gwPluginTypeWrapper"); |
- | String param1= (String) hashMap.get("param1"); | + | String param1= (String) hashMap.get("param1"); |
- | String wrappedPageAddress = projectType+"/"+projectName+"/gwPluginType.html"; | + | String wrappedPageAddress = projectType+"/"+projectName+"/gwPluginType.html"; |
- | modelAndView.addObject("wrappedPageAddress", wrappedPageAddress); | + | modelAndView.addObject("wrappedPageAddress", wrappedPageAddress); |
- | modelAndView.addObject("param1", param1); | + | modelAndView.addObject("param1", param1); |
}catch(Exception e){ | }catch(Exception e){ | ||
- | log.error(e.getMessage(), e); | + | log.error(e.getMessage(), e); |
- | //throw e; | + | //throw e; |
- | //return a message to client | + | //return a message to client |
- | modelAndView = new ModelAndView("commons/emptyPageWithDialogErrorMessage"); | + | modelAndView = new ModelAndView("commons/emptyPageWithDialogErrorMessage"); |
- | String dialogMessage = e.getMessage(); | + | String dialogMessage = e.getMessage(); |
- | dialogMessage = GwUtils.javascriptAndHtmlEscape(dialogMessage); | + | dialogMessage = GwUtils.javascriptAndHtmlEscape(dialogMessage); |
- | modelAndView.addObject("dialogMessage", dialogMessage); | + | modelAndView.addObject("dialogMessage", dialogMessage); |
} | } | ||
return modelAndView; | return modelAndView; | ||
- | } | + | } |
- | @RequestMapping(value = "{projectType}/{projectName}/gwPluginType", method = RequestMethod.POST, produces = "text/html; charset=utf-8") | + | |
- | @ResponseBody | + | @RequestMapping(value = "{projectType}/{projectName}/gwPluginType", method = RequestMethod.POST, produces = "text/html; charset=utf-8") |
- | public ModelAndView gwPluginType( | + | @ResponseBody |
+ | public ModelAndView gwPluginType( | ||
@PathVariable String projectType, | @PathVariable String projectType, | ||
@PathVariable String projectName, | @PathVariable String projectName, | ||
@RequestBody HashMap<String, Object> hashMap, | @RequestBody HashMap<String, Object> hashMap, | ||
Locale locale | Locale locale | ||
- | ){ | + | ){ |
... | ... | ||
- | } | + | } |
</code> | </code> | ||