cancel
Showing results for 
Search instead for 
Did you mean: 

Drag n Drop Facility in xMII 12.0

Former Member
0 Kudos

Dear All

Is there any way to put a drag and drop facility to user,so that he/she can able to change the colum/view according.

Suppose,user wants to see production on a date,prod area,Prod People etc,instead of creating 3/4 transaction ,is it possible in one transaction with drag/drop facility.

Buiplab

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

You can also try using the dHTMLx grid for this type of advanced control as well, here's an example:

[https://wiki.sdn.sap.com/wiki/display/xMII/Customization|https://wiki.sdn.sap.com/wiki/display/xMII/Customization]

Regards,

Sam

jcgood25
Active Contributor
0 Kudos

I assume you are referring to rearranging iGrid columns? In MII 12.1 AllowColumnReordering was added to the iGrid, but this does not apply to 12.0.

DisplayColumns is the property name that controls the view, so providing the user with a simple javascript mechanism to set this property would not be too hard.

document.APPLET.getGridObject().setDisplayColumns("A,B,C");

document.APPLET.updateGrid(false);