forked from extern/egroupware
28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
/**
|
|
* EGroupware eTemplate2 - JS Itempicker object
|
|
* derived from et2_link_entry widget @copyright 2011 Nathan Gray
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @subpackage api
|
|
* @link http://www.egroupware.org
|
|
* @author Christian Binder
|
|
* @author Nathan Gray
|
|
* @copyright 2012 Christian Binder
|
|
* @copyright 2011 Nathan Gray
|
|
* @version $Id: et2_widget_itempicker.js 38623 2012-03-26 23:27:53Z jaytraxx $
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
function itempickerDocumentAction(context, data) {
|
|
var formid = "itempicker_action_form";
|
|
var form = "<form id='" + formid + "' action='index.php?menuaction=" + data.app + "." + data.app + "_merge.download_by_request' method='POST'>"
|
|
+ "<input type='hidden' name='data_document_name' value='" + data.value.name + "' />"
|
|
+ "<input type='hidden' name='data_document_dir' value='" + data.value.dir + "' />"
|
|
+ "<input type='hidden' name='data_checked' value='" + data.checked.join(',') + "' />"
|
|
+ "</form>";
|
|
$j("body").append(form);
|
|
$j("#" + formid).submit().remove();
|
|
}
|