The plum wizard creates a separate directory under the admin directory for each table in the database. I am creating a new module that will be a wizard, and I will be adding data to several tables. The IDE assumes that my new module is in the same directory as the database table module, and therefore the Add,View,Edit and Delete links are wrong.
 
In the example below, I do not want them to be able to add another record, so how do I disable the Add link in the IDE or in code, and how do I correct the path, as I manually did for the view link be pre-pending "../tblpage/".
 
<cf_DisplayListLinks add="" view="../tblPage/tblPageViewForm.cfm" edit="tblPageEditForm.cfm" delete="tblPageDeleteForm.cfm">
 
I guess I am always exploring if something can be done in the IDE first, and that way, I am becoming more aware of everything that can be done there.
 
Dan

Reply via email to