Skip to content

Commit

Permalink
Fix issue in getting rxt fields from tables
Browse files Browse the repository at this point in the history
  • Loading branch information
RameshaKaru committed Sep 26, 2019
1 parent 6243c89 commit 1bdc90e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions jaggery-modules/rxt/module/scripts/core/core.js
Expand Up @@ -1210,9 +1210,10 @@ var core = {};
var components = getFieldNameParts(name);
tableName = components.tableName;
fieldName = components.fieldName;
//Convert the table and field names to lowercase
tableName = tableName ? tableName.toLowerCase() : '';
fieldName = fieldName ? fieldName.toLowerCase() : '';
//Convert the table and field names to camelcase
tableName = tableName ? createCamelCaseName(tableName) : '';
fieldName = fieldName ? createCamelCaseName(fieldName) : '';

var field = null;
if (!template) {
log.error('Unable to locate the rxt definition for type: ' + type);
Expand Down

0 comments on commit 1bdc90e

Please sign in to comment.