© 2015 X2Engine Inc.

Difference between revisions of "Frequently Asked Questions"

From X2Engine
Jump to: navigation, search
(Custom fields)
(Why isn't any data going into my custom field getting saved?)
Line 19: Line 19:
 
# Repeat the process with the "View" to change the record view page for the model type.
 
# Repeat the process with the "View" to change the record view page for the model type.
 
=== Why isn't any data going into my custom field getting saved? ===
 
=== Why isn't any data going into my custom field getting saved? ===
If you are logged in with a user that has been assigned any role, you will need to add permissions to that field for the role, by going to the "Role Manager" in Admin.
+
If this occurs for a user that has been assigned any role, you will need to add permissions to that field for the role, by going to the "Role Manager" in Admin.
  
 
== Custom modules ==
 
== Custom modules ==

Revision as of 19:22, 27 November 2013

API

Contacts

I made a contact through the API. Why doesn't the assignedTo field get set according to lead routing rules?

When creating records through the API, all fields must be explicitly defined. One can, however, obtain an assignee for a new contact that is distributed according to lead routing type via the public "getLeadRoutingType" action of AdminController. An example of this can be found in APIModel (which is a class that was written for the express purpose of creating contacts and other records via the API).

Customization

Custom fields

I made a custom field and it doesn't show up. Now what?

Once you create a field, you must add it to the view and form as you see fit, as follows:

  1. Go to "Admin"
  2. Scroll down to the section "Utilities"
  3. Go to "Form Editor"
  4. Open the views/forms for the model by selecting the model from the "Model" dropdown
  5. Select "Form (Default)" from the "Version" dropdown
  6. Drag and drop the custom field into the form where it is desired.
  7. Hit "Save"
  8. Repeat the process with the "View" to change the record view page for the model type.

Why isn't any data going into my custom field getting saved?

If this occurs for a user that has been assigned any role, you will need to add permissions to that field for the role, by going to the "Role Manager" in Admin.

Custom modules

Why don't I see anything when I go to create/view a record in a new custom module?

The first step after creating a custom module is designing a form and view for it. To do so:

  1. Go to "Admin"
  2. Scroll down to the section "Utilities"
  3. Go to "Form Editor"
  4. Open the views/forms for the model corresponding to the new module by selecting it from the "Model" dropdown
  5. Select "Form (Default)" from the "Version" dropdown
  6. Drag and drop the custom field into the form where it is desired.
  7. Hit "Save"
  8. Repeat the process with the "View" to change the record view page for the model type.