Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
I made a skuid page and then made it available for the users by using Salefsorce “Sites”, which makes it accessible for external users. but when i preview it, i grt an error saying:“You’ve been INKED! (Something went wrong) We were unable to find a Skuid Page named QualityAssurancePage. The Page is either inaccessible or does not exist. If you believe you should be able to view this Skuid Page, ask your System Administrator to check the Sharing Model for the Page object to ensure that you have access to this Skuid Page.”i have checked for the public access settings for this page and profile but nothing helped… Can some one please help me sort this?
I have a requirement where I need to limit the number of characters a user can type into a Rich Text Field. I am having some difficulty figuring out what the best way to limit the number of characters that can be input client side for the individual fields are. There are several RTF fields on various tabs and each field may have a different character count limit. What is the best practice to accomplish this? (I’d even consider some worst practices if it gets the job done).
I have a parent model with a child model that has one or several (up to about five) records. I want a page that shows some parent info at the top, a set of fields and UI-only fields on each child, and actions that execute making changes to any/all of the parent and child model records. I’d love to show a field editor with the parent model, then tab set below that with a tab for each record in the child model, each with an identical content for that record. I guess what I’d ideally want seems to be a cross between a tab set and a queue, where I can show model records across multiple tabs and save them all with a single button at the top of the page.I thought about using a table with drawers, but the necessary field editor for the child model is too impractical to render as a table drawer, and the table will look silly with only the “name” column or only one record. A queue would get me the dynamic navigation list, though it is only on the side (right?) and would require using a page inc
I have a javascript snippet with a createRow() like this: medLogModel.createRow({ editModeForNewItems: true, additionalConditions: [ {field: ‘Inventory_Item__c’, value: treatment.Inventory_Item__c}, {field: ‘Inventory_Item__r.Name’, value: treatment.Inventory_Item__r.Name} ] }); The snippet is followed in the action sequence with a popup action. The popup contains a table with the newly created row. But it’s not in edit mode. It looks like this: What am I doing wrong here?
I have multiselect picklist called as Profile . and i have included condition in my model as - Profile includes (userinfo) Profile Name.but while loading page i am getting following error.An error occurred while attempting to perform the following SOQL query: SELECT ,Name,CreatedDate,Id FROM SObject1 WHERE (Active__c = true)AND(Id not in (SELECT Alert_Name__c FROM SObject2 WHERE (((User_Name__c = ‘005R0000001omWyIAI’)))))AND(Category__c = ‘Priority Alert’)AND(Profile__c includes ‘System Administrator’)AND(Currently_Active__c = true) Error:expecting a left parentheses, found ‘System Administrator’
Puhleeease
, let me know your skills and your rate, thank you!
pls ping me your hourly rate and qualifications. Looking for someone reasonable $18-$30/hr max, have hired some in the past on upwork but looking for another freelancer, thank you
On version 8.15.15. I have two buttons. One renders when snippet a returns true. The other one renders when snippet b returns true.On page load, Button one display correctly. However, as I update the model on the page title, the snippet b is not getting called. So the button never switches.Is that normal?
Hi Team. Here’s a rare bug.Steps to reproduce:Open the Themes page in an org with out of date themes. Import a custom theme. Click the ‘update out of date themes’ button and continue. Expected Result:All themes are updated, including newly imported theme.Actual Result:Page hangs with blocked ui due to javascript exception.Work-around:Reload the page between steps 2 and 3.
I use the Fop2 Extension to perform Click to Call with my PBX system. It works on the SF visual force page because the extension runs once the page loads and all the data is available. My Skuid page, however, has multiple tabs and uses a page include. I was wondering if anyone has either used FOP2 and has a work around for this problem or is in a similar position. I have the extension source file and my thoughts were looking through and just forcing the extension to fire at an interval as opposed to on page load. Another thought was looking through the extension and adding some of the Javascript to a phone render snippet. I’d appreciate any help.
I am using Pat’s solution to get multi-select table filters that use a model as a data source to display a check list instead of the search/type ahead that shows up by default. (As shown here: https://community.skuid.com/t/multi-select-filter-option-for-non-picklist-fields) The filter works great when selecting one or more options. But note that the where clause for region includes ‘’ (empty string). When “Uncheck All” is used, the where clause for region is still there with only the empty string. “Uncheck All” a second time to get the expected result (where clause for Region is removed) Why does “Uncheck All” not remove the where clause for region the first time? I have a filter based on User Roles on the same table that is configured the exact same way and it works perfectly.
Is there an event that I can tap into for whenever a page panel on a skuid mobile page is shown (preferably first shown?)Also, is there any way I can use the dev console to see a list of any events that are firing?
Are you wondering the same? Have you seen our documentation yet?https://docs.skuid.com/latest/en/data-source-types/salesforce/deploy/org-to-org.html#deploy-sandboxHere’s the TL;DR version:Packaging your Skuid pages and other configurations as static resourcesPushing those static resources and other necessary salesforce components from your sandbox org to your destination org using as an Outbound Change Set Unpacking your Skuid pages and page assignments If you have a custom theme with your Skuid configuration, you’ll be exporting and importing that as well. Once all of your resources are in your destination org, you must ensure you set your page overrides accordingly.
Hello Skuid! I am calling skuid.model.save() in a snippet like so: 'saveAllSnippet': function () { var modelsToSave = [], modelsToExclude = ['AddTests','ProcessLog','ChangeTracker','ShowTabs','UI\_Model','DefaultTo','ChartAudit'], dfd = new $.Deferred(); $.each(skuid.model.map(), function(){ if (this.hasChanged && (modelsToExclude.indexOf(this.id) === -1) && this.preventUnloadIfUnsavedChanges) { modelsToSave.push(this); } }); $.when(skuid.model.save(modelsToSave)) .done(function(){ console.log('All Models Saved.'); dfd.resolve(); }) .fail(function(){ console.log('All Model Save Failed.'); dfd.reject(); }); return dfd.promise(); } As you can see from the image below, the .done() response is being called from $.when() despite the fact that the model is throwing a missing required field error. Help?
We’re trying out Salesforce Shield, so we can encrypt patient names but be able to search for patients by name. We have custom fields for first name and last name on a custom Patient object. In a table of Patient records, I can search the server for first name and last name. But in a table of child records, Listings, I can’t search the server for Patient__r.First_Name__c. It works if I search client-side, and it works for non-encrypted text fields. Is this a Salesforce issue, or something with Skuid?I should also mention that in the table of Patient records, the search only works if turn on SOSL search, not if I specify the two name fields. While in the Listing table, the search only works if I specify the two fields. Thanks
Greetings all, I’ve been trying to get a custom renderer snippet for a picklist working, but I just haven’t been able to find anything here on the community that would help. The picklist that I’m trying to render is a custom field that is not dependent on any other picklists, or record types. The problem that I’m having is that even though my console log shows that the picklist values are being set to what I want, the normal picklist values are still being rendered. Here is the snippet: var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]), $ = skuid.$; var otherEntry; var picklistEntriesNew = []; field.metadata.picklistEntries.forEach(function(entry) { if(entry.value === 'Bad Data') entry.label = 'Bad Data (Delete)'; if(entry.value === 'Other') otherEntry = entry; if((entry.value != 'Intake Queue Errors') && (entry.value != 'Other')){ picklistEntriesNew.push(entry); } }); // Users want the picklist entries to be in alphabetical order, so we sort them p
UPDATE: I resolved the issue. I had a JavaScript snippet that was creating a link to open attachments for a child object. The problem was, that the child object did not have any attachments. Reading through other posts when you see “Loading…” on your screen for a while, the problem likely lies with your JavaScript. I have a skuid page built for a custom object, which has a table of 150 records displayed. Clicking the a template field on every single record loads a skuid page for the record, with the exception of one. Here is the template field: {{{Name}}} The one outlier just shows a loading screen and will not load anything. The record does not contain any more information than any of the other records that do load. And, it loads fine on a non-skuidified page. Does anyone have any suggestions on where to start troubleshooting? Thanks for any help you can provide!
Hi, I have a skuid page for case detail view. This page shows up whenever a case is created. Now I am working on service console app and i have pre-chat form which captures information like First Name, Last Name, Email, Phone Etc. after entering this info, the chat session is initiated. Based on the info provided in the pre-chat form, a case is created automatically. Now my problem here is, the case created when the chat is initiated has owner field on its layout and the value on this field is the agent name who is chatting with the customer. There are 5 agents and all belong to a group. Is there any way by which the case owner is by directed to the group instead of the user who is involved in the chat. I want the field look like the image below by default instead of the user name as shown in the second image. How can solve this issue? Thanks. -Avinash
I have SKUID page embedded in VF page. So can we set any variable value from SKUID page event to VF page. Example - I have 5 tabs in SKUID page and on selection of a particular tab in SKUID page , I need to pass a Boolean value to VF page to hide one of the component in that VF page. (with rendered attribute)
I see from skuid documentation that you can subscribe to standard events. Got it. It also says that you can subscribe to ‘custom events’ and then shows an example by registering a component. I don’t quite understand this. If I want to listen for a click on a certain element, can I do it with this function, or should I use javascripts native eventListener method?The source for my event is a jQuery. My code is below. I’ve tested the jQuery selector in the console and it’s working but when I click on the “Last Month” action item, nothing gets logged (although other action framework events associated with the action item do work). I’m using an the snippet type is ‘In-line.’$ = skuid.$;skuid.events.subscribe( $(“.nx-actionselect-dropdown-item:contains(‘Last Month’)”).click(), function(){ console.log(‘Last Month Has Been Clicked!’); });I also tried putting the event into a string “$(”“.nx-actionselect-dropdown-item:contains(‘Last Month’)”“).click()”,
Has anyone integrated Stripe payment gateway in a Skuid page as I’m confused as to where I need to put the Stripe coding within the page. https://stripe.com/docs/checkout/tutorialHelp would be greatly appreciated.Thanks
In the mobile composer for a lookup field I would like to be able to control how the search template renders on the page. The reason for this is that when the text is very long it goes off the container causing issues(screen blanks out on iOS). Two questions … Can the search window size be controlled some how? Can the search template itself be formatted so that I could at least do a new line for Contact Name Account Name Billing City for example.
The ‘Body parameters to include with every request’ section of the Data Source settings seems to be failing to include within requests. I’ve got some JSON I’d like to see in every request I make, and only fields I’ve updated through the Skuid UI are being put into the body. I feel this might be similar to a post I made about header values not being populated. https://community.skuid.com/t/rest-models-put-invalid-json-request-bodies Thoughts?
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.