| 123456789101112131415161718192021222324 |
- // @require variables:
- // if ('undefined' === typeof TABLE_AJAX_NODE_ID) throw "Missing TABLE_AJAX_NODE_ID"; // $this->_htmlID,
- function p5UI__tableAjaxOpenRefCell(namespace, backRefNS, backRefPK, backRefField) {
- // console.log('p5UI__tableAjaxOpenRefCell', {namespace: namespace, backRefNS: backRefNS, backRefPK: backRefPK, backRefField: backRefField})
- // return false;
- // <a onClick="return p5UI__tableAjaxOpenRefCell(' +
- // '\'' + columnProps.xsdRefNsPrefix.replace('__x3A__', '/') + '/' + columnProps.xsdRefType + '\', ' + // namespace
- // '\'' + priv.options.namespace + '\', ' + // backRefNS
- // '\'' + rowPK + '\', ' + // backRefPK
- // '\'' + columnProps.column + '\')' + // backRefField
- // '" ' +
- // 'href="index.php?_route=ViewTableAjax' +
- // '&namespace=' + columnProps.xsdRefNsPrefix.replace('__x3A__', '/') + '/' + columnProps.xsdRefType +
- // '&backRefNS=' + priv.options.namespace +
- // '&backRefPK=' + rowPK +
- // '&backRefField=' + columnProps.column +
- // '">przeglądaj</a>')
- return true;
- }
- global.p5UI__tableAjaxOpenRefCell = p5UI__tableAjaxOpenRefCell
|