I made a custom module, Customers. When I try to edit the layout view, 'EditView' I can not drag panels or rows to the layout. Any help please?
I made a custom module, Customers. When I try to edit the layout view, 'EditView' I can not drag panels or rows to the layout. Any help please?
Last time that happened to me it was due to malformed code in editviewdefs.php for that module. Maybe that's what is happening here.
Co-Founder of: SugarOutfitters
Modules:
SecuritySuite (Teams)
Photo Module
Follow me on Twitter:eggsurplus
Your Personal Developer
I got some figuring out to do, thanks man.
Does anything look funky, here is what is in editviewdefs
PHP Code:<?php
$module_name = 'LINK_Customer';
$viewdefs [$module_name] =
array (
'EditView' =>
array (
'templateMeta' =>
array (
'maxColumns' => '2',
'widths' =>
array (
0 =>
array (
'label' => '10',
'field' => '30',
),
1 =>
array (
'label' => '10',
'field' => '30',
),
),
),
'panels' =>
array (
),
),
);
?>
Just for kicks try this to see if you can add a row to it (may need to remove any working copies first to ensure this loads correctly):
PHP Code:<?php
$module_name = 'LINK_Customer';
$viewdefs [$module_name] =
array (
'EditView' =>
array (
'templateMeta' =>
array (
'maxColumns' => '2',
'widths' =>
array (
0 =>
array (
'label' => '10',
'field' => '30',
),
1 =>
array (
'label' => '10',
'field' => '30',
),
),
),
'panels' =>
array (
'default' => array(
0 => array (
0 => array (
'name' => 'name',
'label' => 'LBL_NAME',
),
1 => NULL,
),
),
),
),
);
?>
Co-Founder of: SugarOutfitters
Modules:
SecuritySuite (Teams)
Photo Module
Follow me on Twitter:eggsurplus
Your Personal Developer
God bless you. Thanks man, glad it wasn't a whole lot to do.
Did it work? I'm guessing it was just confused since no panel was initially defined.
Co-Founder of: SugarOutfitters
Modules:
SecuritySuite (Teams)
Photo Module
Follow me on Twitter:eggsurplus
Your Personal Developer
Yeah, it worked great. I'm glad you're here
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks