Matrix/Grid CommonSettings
SeKo
Hi there,We would like to use the functionality of the CommonSettings possibility of the UI SDK for the Matrix and the Grid component. I didn't find these available in the Coresuite counterpart.
Is there a way to get those? Or is there a way to get the SAPbouiCOM.Matrix from the SwissAddonFramework.Components.Matrix?
thanks!
Anders Olsson
Hi SeKo,Here's one way of getting the SAPbouiCOM.Matrix object:
[CODE]
SAPbouiCOM.Form sapForm = (SAPbouiCOM.Form)SwissAddonFramework.B1Connector.GetB1Connector().Application.Forms.Item(pVal.Form.UniqueID);
SAPbouiCOM.Matrix sapMatrix = (SAPbouiCOM.Matrix)sapForm.Items.Item("38").Specific;
[/CODE]
where "38" is the matrix uid.
0
Please sign in to leave a comment.
Comments
0 comments