multi-column inside Collapsible Panels

This sub-forum is for discussing all topics related to AppGini Helper JavaScript Library, provided by bizzworxx as a third-party AppGini plugin.
Post Reply
ushay
Veteran Member
Posts: 54
Joined: 2020-06-26 21:30

multi-column inside Collapsible Panels

Post by ushay » 2023-04-15 13:12

hello,

i have a Tab like in below code:

Code: Select all

var dv = AppGiniHelper.DV;
dv.compact();

var row_1 = dv.addLayout([8])
    .add(1, ["developer"]);
	
var row_2 = dv.addLayout([4,4])
    .add(1, ["contact1","phone1","email1","city1"])
    .add(2, ["contact2","phone2","email2","city2"])

	
dv.addTab( "elec-tab", "elec", "flash" )
 .add(row_1)
 .add(row_2)

Is there a way to insert the rows in multi column structure inside a collapsible panel?
my final target is to have 3 collapsible panels inside a a tab and inside each collapsible panel to have the code above.

Thanks,
Shay.

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1807
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: multi-column inside Collapsible Panels

Post by jsetzer » 2023-04-15 13:17

Can you please once again describe what you want, perhaps upload an image?
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

ushay
Veteran Member
Posts: 54
Joined: 2020-06-26 21:30

Re: multi-column inside Collapsible Panels

Post by ushay » 2023-04-15 13:46

thanks Jsetzer,
2023-04-15 162526.jpg
2023-04-15 162526.jpg (45.21 KiB) Viewed 2201 times
i am trying to insert the rows and columns circled in red inside a Collapsible Panel and the ones inside the blue circle into another Collapsible Panel.

Shay.

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1807
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: multi-column inside Collapsible Panels

Post by jsetzer » 2023-04-15 14:11

Well, I think you can add a multi-column panel to a custom tab but you can not add a collapsible panel to a custom tab with built in library features.

http://www.appgini.de/docs/Javascript-L ... ayout.html

Of course you can try to find the JQuery selectors of your collapsible panels (source elements) and of the custom tab panel (target element) and then move those source elements using JQuery's .appendTo() function, for example. But this is custom javascript programming and beyond product support. Perhaps someone else can help out starting from here.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

ushay
Veteran Member
Posts: 54
Joined: 2020-06-26 21:30

Re: multi-column inside Collapsible Panels

Post by ushay » 2023-04-15 14:52

OK, thank you Jsetzer

Post Reply