Stephen Abello
4c117d1a33
Fix hardcoded orange in backoffice style
2023-03-02 16:36:07 +01:00
Stephen Abello
58497b380b
Allow to overload datamodel viewer autocomplete style
2023-03-02 16:36:07 +01:00
Stephen Abello
a34d3f91be
Fix tabular fields selector SCSS variables
2023-03-02 16:36:06 +01:00
Stephen Abello
3021234895
N°4460 - Allow to customize skeleton placeholders colors using CSS3 variables
2023-03-02 16:36:06 +01:00
Molkobain
26169111ed
Merge remote-tracking branch 'origin/support/3.0' into develop
...
# Conflicts:
# css/backoffice/utils/helpers/_misc.scss
2023-02-23 11:05:54 +01:00
Molkobain
ea2140258c
N°5317 - Handle overlapping tables when table cells have fixed widths
2023-02-22 18:57:56 +01:00
Stephen Abello
3fbc5e1ce0
N°5904 Hide decorative plus icon on attribute set edit
2023-02-06 14:24:44 +01:00
Stephen Abello
7cc1e33950
N°5904 Fix attribute set / linkset wrapping
2023-02-02 10:05:55 +01:00
Molkobain
0374e303e4
N°5905 - Refactor CSS class .ibo-has-description so it can be used on any element
2023-01-27 17:25:03 +01:00
Molkobain
27bd78d76b
Refactor SCSS misc. partial to dedicated partials as it was growing too much
2023-01-27 17:25:03 +01:00
Molkobain
e72ed33a40
N°5920 - Add linkset's description as corresponding tab's tooltip in object details
2023-01-26 12:01:56 +01:00
Molkobain
40cebf1eb7
N°5923 - Align panel's header within another panel when it has no icon
2023-01-25 16:50:21 +01:00
Stephen Abello
dd213df9c4
N°5822 Fix 7127b192 SCSS rule
2023-01-24 14:33:41 +01:00
bdalsass
fb1ceebaa4
N°3190 - Edit n:n LinkedSetIndirect in object details using a tagset-like widget
...
- Add generic set block ui component
- Add model link set (direct and indirect) attribute (display style)
- Add model link set direct allowed values
- Create link set viewer block UI (BlockLinksSetDisplayAsProperty)
- Add set block ui factory for linkset
- Add object factory and create new endpoint in object controller (with data binder)
- Add link set model, link set repository and link set data transformer services
2023-01-24 10:03:10 +01:00
Stephen Abello
e1ffa65d8b
N°3136 - Add creation and modification of n-n objects in object details ( #378 )
...
* Rebase onto develop
* Use exit condition instead of englobing condition
* Add informative modals that can be called from modal toolbox
* Refactor "apply_modify" and "apply_new" into own controller, handle ajax requests with a json response and handle these responses in linkset creation/edition
* Fix merge issues
* Remove inverted condition
* Move linkset create button to a better place, still needs to fix duplicate "New" button caused by a refactor
* Handle "Cancel" button in modals
* Do not display relations when editing an object in a modal
* More elegant way to add "New" button to relations lists
* Factorize vertical highlights in alerts and modal in a single mixin
* Replace button name with dict entry code
* Change route name to snake case
* More elegant way to add "Create in modal" button to relations lists
* Replace triple if with in_array
* Move listener to body
* Rename variable to match boolean rules
* Rename event
* Rename extra param
* Add phpdoc
* Revert changes
* Check indirect linkset rights before allowing creation in modal
2023-01-18 13:35:48 +01:00
Molkobain
ec90c0b6cd
N°5872 - Navigation menu: Wrap menu group label instead of ellipsis in drawer
2023-01-11 10:21:46 +01:00
Molkobain
7b79da3f32
N°5871 - Navigation menu: Show ellipsis on long menu group labels
2023-01-11 10:18:15 +01:00
Stephen Abello
7127b192a2
N°5822 - Do not display the tab separator in scroll mode when there is only one tab
2022-12-23 14:28:22 +01:00
Eric Espie
bb26e48d38
Update version to next release 2.7.9
2022-12-12 16:19:42 +01:00
Stephen Abello
26359cf1ee
Move datatable SCSS files under the same directory
2022-12-06 16:14:42 +01:00
Stephen Abello
00a25f3e8b
Move datatable SCSS files under the same directory
2022-12-06 16:10:58 +01:00
bdalsass
dbe7fae82e
Feature/modals - generic modal API ( #373 )
...
Default modal JS Implementation:
Add title option
Add buttons option
Change template cloning
Confirmation Modal:
Add implementation
Do not show again functionality
Web Page:
Add blocks array with twig loop insertion
2022-12-06 10:18:59 +01:00
Stephen Abello
98a53a46f0
Fix "Configure this list" modal content display
2022-12-02 15:33:35 +01:00
bdalsass
bdb29fd99a
Issue/5074 - Routage, Block UI relations, Links row actions ( #369 )
...
* datatable row actions
Below is a sample of extra param to enable feature:
$aExtraParams['row_actions'] = [
[
'tooltip' => 'remove an element',
'icon_css_class' => 'fa-minus',
'js_row_action' => 'console.log("You clicked the remove button");',
'confirmation' => [
'message' => 'UI:ConfirmationMessage',
'message_row_data' => "name",
'remember_choice_pref_key' => 'remove_do_not_show_again',
],
],
[
'tooltip' => 'open in new tab',
'icon_css_class' => 'fa-external-link-square-alt',
'on_action_js' => 'window.open("http://localhost/itop-branchs/dev/pages/UI.php?operation=details&class=UserRequest&id= " + aData.id + "&c[menu]=UserRequest%3AOpenRequests");',
],
[
'tooltip' => 'other actions',
'icon_css_class' => 'fa-ellipsis-v',
'on_action_js' => 'console.log(event);',
],
];
* Contrôleur pour la suppression et le détachement de liens
* Block UI pour l'édition des relations
* Block UI pour la visualisation des relations
* Boutons d'actions pour la suppression et le détachement de liens
* Gestion dialogue de confirmation pour les row actions
2022-11-23 16:10:34 +01:00
Lars Kaltefleiter
2dccedf8d7
🐛 navigation menu z-index workaround for safari
...
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
2022-11-08 17:25:49 +01:00
Pierre Goiffon
efdf780c79
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-10-25 11:58:56 +02:00
Pierre Goiffon
4e7df37931
📝 jqueryui.scss : add comment to inform it is deprecated
2022-10-25 11:54:02 +02:00
bdalsass
5157f511fc
N°5073 - Implements line actions in a datatable ( #337 )
...
* datatable row actions
Below is a sample of extra param to enable feature:
$aExtraParams['row_actions'] = [
[
'tooltip' => 'add an element',
'icon_css_class' => 'fa-plus',
'css_class' => 'ibo-is-success',
'level' => 'secondary',
'on_action_js' => 'console.log(aData);',
],
[
'tooltip' => 'remove an element',
'icon_css_class' => 'fa-minus',
'css_class' => 'ibo-is-danger',
'level' => 'secondary',
'on_action_js' => 'console.log("You clicked the remove button");',
],
[
'tooltip' => 'open in new tab',
'icon_css_class' => 'fa-external-link-square-alt',
'on_action_js' => 'window.open("http://localhost/itop-branchs/dev/pages/UI.php?operation=details&class=UserRequest&id= " + aData.id + "&c[menu]=UserRequest%3AOpenRequests");',
],
[
'tooltip' => 'other actions',
'icon_css_class' => 'fa-ellipsis-v',
'on_action_js' => 'console.log(event);',
],
];
* datatable row actions (update)
* datatable row actions (update)
* datatable row actions (add template role)
* datatable row actions (align actions)
* datatable row actions (change template factory make to make standard)
* datatable row actions (use trait to handle row actions)
* datatable row actions (row actions templates)
* datatable row actions (row actions templates)
* datatable row actions (row actions templates)
* datatable row actions (extends to static and form)
* datatable row actions (extends to static and form)
* datatable row actions (code review S)
* datatable row actions (code review S)
* datatable row actions (code review S)
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update templates/base/components/datatable/row-actions/handler.js.twig
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* datatable row actions (code review M)
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update js/dataTables.main.js
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update sources/Application/UI/Base/Component/DataTable/DataTableUIBlockFactory.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update sources/Application/UI/Base/Component/DataTable/StaticTable/StaticTable.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* Update application/utils.inc.php
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
* datatable row actions (code review M2)
* datatable row actions (code review M3)
Co-authored-by: Molkobain <lajarige.guillaume@free.fr >
2022-09-26 08:20:28 +02:00
odain
b01627f39d
Merge branch 'saas/3.0' into develop
2022-09-20 16:04:55 +02:00
odain-cbd
766c9f0e7e
N°5305 - CSV import ergonomy PR ( #332 )
...
Reworked UI feedbacks on following attributes:
- enum
- date
- external key
2022-09-20 16:00:33 +02:00
Molkobain
25af155113
Merge remote-tracking branch 'origin/support/3.0' into develop
...
# Conflicts:
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
2022-08-16 17:38:10 +02:00
Molkobain
c8b82e6e48
Merge remote-tracking branch 'origin/support/2.7' into support/3.0
...
# Conflicts:
# approot.inc.php
# css/css-variables.scss
# datamodels/2.x/authent-cas/module.authent-cas.php
# datamodels/2.x/authent-external/module.authent-external.php
# datamodels/2.x/authent-ldap/module.authent-ldap.php
# datamodels/2.x/authent-local/module.authent-local.php
# datamodels/2.x/combodo-db-tools/module.combodo-db-tools.php
# datamodels/2.x/itop-attachments/module.itop-attachments.php
# datamodels/2.x/itop-backup/module.itop-backup.php
# datamodels/2.x/itop-bridge-virtualization-storage/module.itop-bridge-virtualization-storage.php
# datamodels/2.x/itop-change-mgmt-itil/module.itop-change-mgmt-itil.php
# datamodels/2.x/itop-change-mgmt/module.itop-change-mgmt.php
# datamodels/2.x/itop-config-mgmt/module.itop-config-mgmt.php
# datamodels/2.x/itop-config/module.itop-config.php
# datamodels/2.x/itop-core-update/module.itop-core-update.php
# datamodels/2.x/itop-datacenter-mgmt/module.itop-datacenter-mgmt.php
# datamodels/2.x/itop-endusers-devices/module.itop-endusers-devices.php
# datamodels/2.x/itop-files-information/module.itop-files-information.php
# datamodels/2.x/itop-full-itil/module.itop-full-itil.php
# datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
# datamodels/2.x/itop-incident-mgmt-itil/module.itop-incident-mgmt-itil.php
# datamodels/2.x/itop-knownerror-mgmt/module.itop-knownerror-mgmt.php
# datamodels/2.x/itop-oauth-client/module.itop-oauth-client.php
# datamodels/2.x/itop-portal-base/module.itop-portal-base.php
# datamodels/2.x/itop-portal/module.itop-portal.php
# datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
# datamodels/2.x/itop-profiles-itil/module.itop-profiles-itil.php
# datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
# datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
# datamodels/2.x/itop-service-mgmt-provider/module.itop-service-mgmt-provider.php
# datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
# datamodels/2.x/itop-sla-computation/module.itop-sla-computation.php
# datamodels/2.x/itop-storage-mgmt/module.itop-storage-mgmt.php
# datamodels/2.x/itop-tickets/module.itop-tickets.php
# datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
# datamodels/2.x/itop-welcome-itil/module.itop-welcome-itil.php
# datamodels/2.x/version.xml
2022-08-16 17:35:00 +02:00
Molkobain
8f0a62c1c9
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-08-16 12:17:23 +02:00
Benjamin Dalsass
0a61169326
Update version to next release 2.7.8
2022-08-16 09:47:46 +02:00
Molkobain
fc9ac1b441
N°4739 - Add semantic on state for user classes
...
* Add new section in the backoffice SCSS structure for PHP classes of the DM that are in the core (not a module) and can't be styled via XML.
2022-08-14 21:35:56 +02:00
Molkobain
9438d063cd
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-08-12 14:59:38 +02:00
Molkobain
b91ab8940e
N°4918 - Fix "other tabs" menu displayed behind some elements
2022-08-12 14:59:06 +02:00
Stephen Abello
1f3e91efae
Merge branch 'support/3.0' into develop
2022-08-10 14:09:50 +02:00
Stephen Abello
b3750e46cf
Stylize datatables before widget is loaded in order to avoid flickering
2022-08-10 14:07:39 +02:00
Stephen Abello
3d593faad8
Fix datatables semantic colors not using sematinc variables
2022-08-10 14:07:38 +02:00
Eric Espie
8d8cefe948
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-08-09 17:11:34 +02:00
Stephen Abello
b8ecb68ad7
N°5192 Make highlighted row more visible by adding a border to the first cell
2022-08-09 14:27:09 +02:00
Stephen Abello
8cdc251378
Merge branch 'support/3.0' into develop
2022-08-08 16:42:24 +02:00
Stephen Abello
b1432ef1c6
N°4927 Fix date picker widget initialized visible
2022-08-08 15:07:02 +02:00
Stephen Abello
b4880beb5b
N°5192 Fix HILIGHT_CLASS_OK not displaying green rows since iTop 3.0
2022-08-08 15:07:01 +02:00
Molkobain
76062ca8b2
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-07-26 22:32:22 +02:00
Molkobain
6ee67a2a36
N°5108 - Fix variable name
2022-07-26 22:11:38 +02:00
Molkobain
494b70950c
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-07-18 16:49:05 +02:00
Molkobain
808092acdd
N°5311 - Update deprecation comment to match PHP deprecations convention
2022-07-18 16:05:41 +02:00
Molkobain
99b4fceaf3
Merge remote-tracking branch 'origin/support/3.0' into develop
2022-07-12 11:43:49 +02:00