mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
- Fixed etemplate input dirty handling
- Now generating an widget object tree in widget.js - Added generic response to egw_json - Moved "getFramework" function to jsapi and renamed it to "egw_getFramework" - Added plugin system to egw_json - Transformed the jQuery "replaceWith" call form class.etemplate_form.inc.php into an own json plugin - Fixed label creation for et_html
This commit is contained in:
@ -114,6 +114,23 @@ function egw_appWindow(_app)
|
||||
return window;
|
||||
}
|
||||
|
||||
window.egw_getFramework = function()
|
||||
{
|
||||
if (typeof window.framework != 'undefined')
|
||||
{
|
||||
return framework;
|
||||
}
|
||||
else if (typeof window.parent.egw_getFramework != "undefined")
|
||||
{
|
||||
return window.parent.egw_getFramework();
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function egw_set_checkbox_multiselect_enabled(_id, _enabled)
|
||||
{
|
||||
//Retrieve the checkbox_multiselect base div
|
||||
|
Reference in New Issue
Block a user