Skip to content
Snippets Groups Projects
Commit 35548fe0 authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Release version 0.6.0.16

parent 7487c3f6
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
HEAD HEAD
0.6.0.15 (Mar 2014) 0.6.0.16 (Mar 2014)
- Major release running with ExtJS 4.2.1 - Major release running with ExtJS 4.2.1
It is not compatible with with previous versions running wiht ExtJS 3.4. It is not compatible with with previous versions running wiht ExtJS 3.4.
It relies on the new class system of the Ext JS 4 library as well as It relies on the new class system of the Ext JS 4 library as well as
......
...@@ -9,7 +9,7 @@ Ext.define('App', { ...@@ -9,7 +9,7 @@ Ext.define('App', {
* The version of the plugin * The version of the plugin
* @property {String} * @property {String}
*/ */
version: '0.6.0.15', version: '0.6.0.16',
/** /**
* The name of the application * The name of the application
......
...@@ -181,7 +181,8 @@ Ext.define('App.panel.WithUrlSelector', { ...@@ -181,7 +181,8 @@ Ext.define('App.panel.WithUrlSelector', {
var iframe, var iframe,
mask, mask,
request, request,
url; url,
vars;
// destroy embedded IFRAME in the mainPanel if any // destroy embedded IFRAME in the mainPanel if any
iframe = this.mainPanel.getEl().getById('mainPanelIframe'); iframe = this.mainPanel.getEl().getById('mainPanelIframe');
...@@ -206,7 +207,6 @@ Ext.define('App.panel.WithUrlSelector', { ...@@ -206,7 +207,6 @@ Ext.define('App.panel.WithUrlSelector', {
}; };
this.mainPanel.getLoader().load({ this.mainPanel.getLoader().load({
baseParams: this.baseParams,
loadMask: mask, loadMask: mask,
params: request.vars, params: request.vars,
url: request.http, url: request.http,
...@@ -226,7 +226,8 @@ Ext.define('App.panel.WithUrlSelector', { ...@@ -226,7 +226,8 @@ Ext.define('App.panel.WithUrlSelector', {
}); });
// build the URL using the GET method // build the URL using the GET method
url = request.http + '?' + Ext.Object.toQueryString(request.vars); vars = Ext.Object.merge(request.vars, this.baseParams);
url = request.http + '?' + Ext.Object.toQueryString(vars);
// append the IFRAME to the main panel therefore // append the IFRAME to the main panel therefore
// the browser will launch the downloading. // the browser will launch the downloading.
......
...@@ -3,9 +3,14 @@ ...@@ -3,9 +3,14 @@
\usepackage[utf8]{inputenc} \usepackage[utf8]{inputenc}
\usepackage{babel} \usepackage{babel}
\begin{document} \begin{document}
\section*{Test} \section*{selector}
\begin{enumerate} \begin{enumerate}
{{for k in test:}}\item {{=k.replace('_', ' ')}}: {{=test[k]}} {{for k in test:}}\item {{=k.replace('_', ' ')}}: {{=test[k]}}
{{pass}} {{pass}}
\end{enumerate} \end{enumerate}
\section*{request.vars}
\begin{enumerate}
{{for k in vars:}}\item {{=k.replace('_', ' ')}}: {{=vars[k]}}
{{pass}}
\end{enumerate}
\end{document} \end{document}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment