Page 1 of 1

AppGini Helper JavaScript Library & Admin LTE

Posted: 2022-09-17 17:02
by mdannatt
Hi Jan
I hope you are keeping well. I was looking at implementing Admin LTE to get a left hand menu (found at https://adminlte.io/).
More specifically, the AppGini Version vt rngoda (viewtopic.php?t=4792).
Sadly, I have run into a problem I can't seem to solve.
WIth AppginiLTE installed, AppginiHelper still produces tabbed layouts (and prepend and append still work), but multiple column format breaks and reverts to single column.

Code: Select all

var dv = new AppGiniDetailView();
 	var row_1 = dv.addLayout([4,4,4])
	.add(1, ["field 1"])
	.add(2, ["field 2"])
	.add(3, ["field 3"])
	.wrapLabels()
dv.addTab("Details-tab", "Tab Header", "cog")
		.add(row_1)
		.add(row_2)
		.add(row_3)
Looking at Console, there are no obvious errors to help narrow down the problem. Anything obvious I can implement/workaround?

Warm Regards

Matthew

Re: AppGini Helper JavaScript Library & Admin LTE

Posted: 2022-09-18 03:22
by jsetzer
Hi,

If there are compatibility problems please directly ask the vendor of the AdminLTE plugin.

Re: AppGini Helper JavaScript Library & Admin LTE

Posted: 2022-09-18 07:03
by mdannatt
thanks jan