Skip to main content
Nintex Community Menu Bar
Question

Records not showing in Drawers Table?

  • July 9, 2024
  • 3 replies
  • 13 views

Forum|alt.badge.img+2

I am showing accounts with contacts in list view(contacts are showing with help of drawers)Every thing is working fine except below issues in Drawers

1.I gave “show all” in visible rows (in Pagination section of drawers).
But drawers table of accounts didn’t show all contacts.
When clicking “Load More” button, its showing all contacts.

How to load all contacts without “Load More” button click on Drawers contact table?
2. How to hide “Showing Rows 1-1 of 1+” in Drawers table?

My XML code:
























































{{Name}}


{{Model.label}}


















































var params = arguments[0],
$ = skuid.$;
var field = arguments[0];
var value = arguments[1];
console.log(field.mode);
if (field.mode === ‘edit’) {

var disabilityOptions = ;

skuid.$.each(skuid.model.getModel(‘Status’).getRows(), function(i,row) {
console.log(‘—row----’+row);
disabilityOptions.push({
value : row.Status_Value__c,
label : row.Status_Value__c
});
});
console.log(‘—disabilityOptions----’+disabilityOptions);

var disabilitySelect = skuid.ui.renderers.PICKLIST.edit({
entries : disabilityOptions,
required : false,
value : value
}).change(function() {
//alert(skuid.$(this).val());
field.model.updateRow(field.row,‘AccountNumber’,skuid.$(this).val());
});
field.element.append(disabilitySelect);
} else {
console.log(‘-----nonedit------’+field.mode);

skuid.ui.fieldRenderers.TEXT[field.mode](field,value);

}




This topic has been closed for replies.

3 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • 3766 replies
  • July 9, 2024

Have you followed this tutorial?  http://help.skuidify.com/m/components/l/269735-add-nested-rows-to-your-table-with-drawers

What you are reporting seems like its associated with not using “before drawer opens - actions”  ,  model query issues, and table context issues.  All of these are addressed in that tutorial. 


Forum|alt.badge.img+11

You will need to adjust the Contacts Model Max # of records (Limit) setting.


Forum|alt.badge.img+2
  • Author
  • 5 replies
  • July 9, 2024

thanks Rob and Irvin