Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I’m trying to use a custom field renderer in my table to render a field based on the value of another field in the row. This seems to not work. I have on the field “Field Rendererer: Custom (run a Snippet)” and I’ve entered my snippet as follows: “In-Line (Snippet)” var params = arguments[0], $ = skuid.$; var field = arguments[0]; var cellElem = field.element; var row = field.row; var value = arguments[1]; var m = skuid.model.getModel('DynamicReportFinancialInclude\_\_Conditions'); var operator = row.Operator\_\_c; var operator2 = row['Operator\_\_c']; var operator3 = m.getFieldValue(row,'Operator\_\_c',true); console.log('SKUID RECORD OPERATOR: '+operator+','+operator2+','+operator3); console.log('ROW:'); console.log(row); if(operator !== undefined && operator !== null){ skuid.ui.getFieldRenderer(field.metadata.displaytype).edit( field, value ); } Here’s the console output: As you can see, the first output (operator,operator2,operator3) shows “undefined,undefined,nu
I am having an issue after upgrading to 11.2.30 where community users are getting a There was a problem rendering a component of type skuidpage: No row provided error in the console. Internal users this does not occur. The page loads fine but functionality is limited/broken.
I’ve looked and looked. Can’t find a direct Skuid function to get this.I would like to create a model based on picklist values in order to create a deck with columns based on picklist values.
{{$Model.MODELNAME.data.N.FIELD}} (where N is the row index) will get you FIELD from row N in a model. Is it possible to get the last row in the model this way? {{$Model.MODELNAME.data.last.FIELD}} or something?Thanks!
Hi, We are attempting to use the skuid page component from a visual force page to load a page, but we are trying to set a page parameter on the skuid page and it is giving us an error. Using this code below works: <apex:page standardController=“Contact” extensions=“skuid.Redirects” showHeader=“false” sidebar=“false” readonly=“true” docType=“html-5.0” action=“{!IF(canUseSkuid,‘’,redirect)}” title=“TestPage”> <skuid:page page=“TestPage” /> </apex:page> But if we change the skuid page to <skuid:page page=“TestPage&contactid={$Contact.Id}”/> or any other parameter we set, it gives a skuid error and says the page does not exist. We are not sure how else to try to set the page parameters and pass the values we need to to the skuid page. Thank you!
We use a Skuid pages in our Lightning Community. The Skuid page is rendered within a Skuid Lightning Component. On our Case Detail page (in the lightning community), we use a deck component to show related cases.I noticed today that the footer on the deck component does not render within the community. It will render when previewing the page in Salesforce. In addition, within a lightning component in our Salesforce environment, the same deck footer renders as intended.Has anyone else experienced something similar?PS: We’re not using any javascript, CSS, or any other kind of custom coding on this page. It’s all standard Skuid functionality.
We have a skuid page that was build by a third party for us. It works fine most of the times, but users get a blank space on left some times which is getting annoying. We asked the third party for a solution, they could not figure it out. Is there a reason for this?
there’s an option to add a multi-select filter to a table on a Text field which contains 2 value either “XYZ” or blank,i have already applied below options, but all are failed so please help me to resolve this usse on a very urgent basic,1.Convert text into Picklist and add manual picklist enties values,2.Convert text into Picklist and getting picklist values from snippetvar params = arguments[0], $ = skuid.$;var entries = ;entries.push( { value: ‘XYZ’, label: ‘XYZ’, defaultValue: false}, { value: ‘’ , label: ‘Blank’, defaultValue: false});return entries; 3.https://community.skuid.com/t/auto-create-blank-as-a-filter-optionwhen i select blank option from the filter drop down, then after apply it , it removed the blank selection and i want to filter out all the blank records
I’m looking to strategize how best to go about sharing data between page includes and the page it’s included on.Specific scenario:I have users each with their own “Department” field set on their User object. In order to pull this department field, I query the user object based on the ID of the current user. In all of my elements I may display things differently dependent on their Department. This is fine and good, except when it comes to using page includes.Currently I am running this query to find out the user’s department on each page include, which is ineffecient and less than ideal.I’d like to be able to share this data (User model) between page includes and the page it is included on, such that if the page it was included on has already loaded this data, the included page uses that model to base its logic on rather than having to query its own model.However, if my page include does not have a parent page that queried the model, then at that point the page include should query the
Client side search is no longer searching all fields in a table. I have a page using a child relationship to bring a name of a person in. The table used to allow Client search method to search the name field. Client Search no longer works on this page. In fact, once I realized it wasn’t working I recalled it not working on other pages. Please repair client side search.While logging a bug I want to resubmit another bug where mass update takes new record rows out of EDIT mode after the mass update. You have to click back in to each new row to open them back up again.Thank you,Rich
Is it possible to have a Dynamic Page Include where you specify the page name from a model field value? I tried doing this directly and it didn’t work. I also tried doing this with a Custom Component but can’t seem to get it to work.Any ideas?Thanks!
I have a custom JS button in SF Classic that is used to send documents to Docusign, and I’ve successfully replicated the button in a Skuid snippet:var params = arguments[0], $ = skuid.$; var model = skuid.model.getModel(‘UltrasoundRecord’); var ClientUltrasound = skuid.model.getModel(‘UltrasoundRecord’).getFirstRow(); //Docusign Options Setup var CRL=‘Email~’+ ClientUltrasound.Medical_Director_Email__c +‘;Role~Medical Director;AccessCode~’+ClientUltrasound.Clinic_Ultrasound_Password__c+‘;FirstName~’+ClientUltrasound.Medical_Director_First_Name__c+‘;LastName~’+ClientUltrasound.Medical_Director_Last_Name__c; var DST=‘*******************************’; //Omitted var CEM= ClientUltrasound.Ultrasound_Note_to_MD__c; var CES=ClientUltrasound.Ultrasound_Email_Subject__c; var url = ‘/apex/dsfs__DocuSign_CreateEnvelope?[SourceID=’ + ClientUltrasound.Id + ‘]&CRL=’+CRL+‘&DST=’+DST+‘&CEM=’+CEM+‘&CES=’+CES; console.log('Merged URL: ’ + url); window.open(url.text());The URL merges all
Hi Guys,We have a Skuid page exposed to a site and for some reason, the Site user cannot drag & Drop files in attachment. The Upload Button works fine.I saw in an older post (the same issue, but with community users) that we have to change API Enable permission to true, which I did for that site user and still does not workAny ideas on how we can make this work?Thx
I have Account Type as well as an Account Subtype dependent picklist.I created a new option on the Subtype, and properly allocated it under its Type option. I’ve also made sure it’s on all Record Types for Account.In Salesforce Classic view, I can see the new option just fine.In SKUID, the new Subtype option doesn’t show up.Is there some kind of a metadata refresh that needs to happen for SKUID to pick up the change? Why is it not showing up right away? What can I do to fix this? I’ve already tried emptying cache and hard refreshing the page itself.(SKUID version: 12.1.7)Thanks!
We were installing html2canvas library to create images from parts of our skuid pages, and noticed that the library was already installed as part of skuid’s package. Is this documented anywhere? Are you thinking of adding to the action framework a “download png” action?? Would be super cool.
Hi Skuid Team,WE NEED YOUR HELP !!we are getting this below error while loading skuid page which has a skuid table in it, An error occurred while attempting to perform the following SOQL query: SELECT id,name,createddate FROM Account ORDER BY , Some_Custom_Field_c DESC NULLS LAST LIMIT 51 Error:unexpected token: ‘,’ as per the account model, we have added “CreatedDate DESC” into this model property “Fields to order records by”. and this Some_Custom_Field__c, we have made this field sort through table column header. I have put model row limit to 50 but it is showing 51 in the query this soql query should run like below but it is throwing error, SELECT id,name,createddate FROM Account ORDER BY CreatedDate, Some_Custom_Field_c DESC NULLS LAST LIMIT 50 note: this error is coming for only one user and all other user with same profile are woking fine.
Hi For some reason, in community the pages are not rendering correctly. For example: Prod: Community: Both prod and community are on version 11.2.27. Any help? Thanks.
Hey, can anyone help or suggest in the following issue… One of the user is unable to view any records in the list view in the skuid page with no filters applied. Both the users have same profile, assigned same permission sets and sharing settings. The user is able to see records in the skuid page in the testing as well as staging org but is UNABLE to view that in Production org. This is happening only for a particular user in PRODUCTION ORG only. All of a sudden, we were not able to see records in the skuid page in production org for the particular user .
Hello everyone, we built a web form with Skuid that has a two-step wizard: In the first step, after clicking on next, a record of a custom object is created. In the second step, further details are entered by the user and files can be uploaded as attachments to the custom object record. After clicking on a send button, the custom object record is updated with the information from step 2.The Skuid web form is embedded in a Visualforce page, which itself is the starting page of a Visualforce-based community, so the user entering the information is an anonymous site guest user. So far, this has all been working well, until Salesforce rolled out the security updates concerning guest users with the new Spring 20 release on some of our sandboxes. This forced us to make some adjustments regarding the updating logic in step 2, but we got everything working, EXCEPT the file upload:When the site guest user now tries to upload a file as attachment to the custom object record, the upload fails and
I’m having trouble getting text fields to retain the formatting present in Salesforce, namely page breaks. We have a number of notes fields in Salesforce and this formatting is important. Here’s an example of how a field is formatted in Salesforce: And here is how the field shows up in Skuid V2: Can I alter this field so that the page breaks are retained? When I click into the field to edit it through Skuid, the page breaks show up. It’s only in Read mode that they are not present, which is arguably when they are most important.
I have an apex class which returns a list of sObject and i am creating a row to a UI only model. I want to create the row with salesforce Id which is returned from myList. How can I achieve that?Below is my code. $.each(myList,function(i,row){ var row1 = model.createRow({ additionalConditions: [ { field: ‘Id’, value: row.Id}, ] }); });
Help I tried to install the Slack App in a Professional Edition instance and received this: This app can’t be installed. There are problems that prevent this package from being installed. Missing Organization Feature: ApiAndPlatformEvents Missing Organization Feature: ApiAndHighVolumePlatformEvents error:
I am attempting to do some reconciling of licenses in our org, and I am finding that the number of licensed users that show up in the list is not matching the used licenses roll-up at the top of the visualforce page. Has anyone ever experienced this before?Additional information: I made sure that it is show all users, I have the filtering set to all, and I have counted it 4 times. I don’t know if this has anything to do with it, but we just upgraded to Millau version 28.
Upon table export to CSV, if “load all records” is selected, a user gets an error “Read access denied for CustomObject__C, controller action method may not execute”. The user is assinged to a profile that has view all permissions for that object. The user can see the records in the table, but if load more or export buttons are clicked. They get this error message. Anyone have any ideas?
Is it possible to specify “HAVING” in an aggregate model? Reference: https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_select_having.htmMy use case is that I want to filter out 0 SUMs
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.