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
When using the action framework to save models, it is possible to select multiple models to be saved. There’s an option to specify that the entire operation should be rolled back if there are any errors. This can be used to prevent records being created if later operations fail. For example: imagine a page where you enter a new account, and new contacts related to that new account in one page. You set up an action that saves both models, and the Account is saved, and the Contact is saved and linked to the account. Let’s say that for some reason the Contact save fails - let’s say a validation rule fires. If the rollback option is checked, that will prevent the Account from being created as well.Is there a way to do this when using the Javascript API? I may be looking in the wrong place, but the closest I can see is skuid.model.save() which takes a function that is called when the save finishes. The problem with this is that the function is only told what succeeded and what failed; it do
Does anyone have any examples of running an Ajax call to an Apex class that returns data and use that data within a Skuid table? My use case:I have a medical data provider that allows httprequests with a webservice to get data (Pharmacies, hospitals, medications etc.). The data is updated daily as new meds, pharmacies come out all the time. I want to present my users with a SKUID lookup table that is searchable and filtered and allow row actions to allow the user to add the lookup record to salesforce and associate the newly added record to the account.Is there a way to do this or should I maintain a copy of 100’s of thousands of lookup data in an object?Just something basic that calls apex which returns JSON or something and then make it a dummy Skuid model or something… 🙂
In Salesforce1 App and Skuid Mobile I do not see an option for Buttons or Links (for instance I have a link that I use on the Desktop Skuid pages that is http://maps.google.com/maps?f=q&hl=en&q={!Account.House_Street__c}+{!Account.House_City__c}+…I pasted that into a Mobile Skuid button and it just sat there when I clicked on it. Whereas if I enter http://google.com it opens right up. I also tried tweaking the field lookups to use mustache instead and I made sure the fields where in my model i.e. http://maps.google.com/maps?f=q&hl=en&q={{House_Street__c}}+{{House_City__c}}+{{House_State__c}}&om=1What is my best option for taking fields from an object and incorporating them into a Button with an action of “Go to URL” in Skuid Mobile?Thanks!
Hi,We’re facing the following challenge with a template field that we’re using to display a record name as a hyperlink:If the name value has a percentage in it, upon clicking on the hyperlink the user is being directed to a blank page with the following message when clicking on the URL:“Illegal RequestYou have sent us an illegal URL or an improperly formatted request.”It seems that the URL is not getting URL encoded. Percentages are not formatting correctly in the URL. How do we fix this?Any help on this would be greatly appreciated.Thanks!
Conditinal Rendering on fields is not working when the condition logic is custom - in my case it is 1 OR 2 OR (3 AND 4). This happens only in IE. It works perfectly in other browsers.Is this a known issue in the newer version of Skuid?
Hi,For some of our Skuid pages, when an error message is displayed, the field labels in the error messages are inconsistent with the field labels on the page. For example, we have a standard name field referenced in a field editor. The metadata label is ‘Name’ but we want to display it in the UI as ‘Content Name.’ We have changed the label on the field editor but if a validation message is displayed, the label that appears in the error message is ‘Name.’ I had found a post on the Skuid community a few months back and have recently tried to implement it but it doesn’t seem to be working. It involves the use of custom labels and an inline snippet to display the custom label name instead of the metadata field label name:https://community.skuid.com/t/can-validation-error-message-show-label-instead-of-field…I have tried to implement this as per the feedback in the post, but I’m having issues with this - it doesn’t seem to be working at all. I have noticed that this article/post has been arc
I found two issues with the page that spawned my 3 Problem posts today.The charts did not play well with cloned models. As soon as I conditionally rendered them, the issue of components not showing whilst in a tab stopped. Which conditions and/or their order was important when attempting to save the models. Trying to isolate what specifically cause the issue.
I have a chunk of text that I need to display on a page. This text contains an HTML link. I’ve created the custom label in SF, the label in Skuid, and added a template region to display the label. The label displays on the page, but it shows the HTML as text. I have the allow HTML checkbox checked.Is this possible? Is there a better way to do it?
Is there any chance of successfully iframing a squid page into wordpress? The page shows up in the frame but when I click on controls, it does a vanishing act. Making changes to my kiosk and would like to run some squid forms on a wordpress intranet site.If iframes are not possible, are there any other options here?Thanks Guys
Hello - To keep it simple, say I have two models and fields Model A –> Field Product1UpContract –> Price_Per_Case__c and Model B –> Feild Product1ContractPricing –> UP_Contract_Uplift__c Note - Model B also has a field called Price_Per_Case__c I would like to update the Product1ContractPricing –> UP_Contract_Uplift__c field with the Product1UpContract –> Price_Per_Case__c field. Everything I read seems to say this should be done with the action framework. I set the Action up on the Product1UpContract (Model A) as shown below. The action is firing but it seems like it is updating the UP_Contract_Uplift__c field with the Price_Per_Case_c from Model B not Model A. Any thoughts?
Hi,I’m trying to add a redirect to a row action within a table that opens up a new tab to view a PDF that we currently uploaded as a static resource.I’m thinking this would typically just be an action type of ‘Redirect to URL’ that would need to be added to the Row action, however, we have an additional layer of complexity.There are 2 separate documents that a user can be directed to based on the value of a particular field. We are currently using a formula field which evaluates the value of the field and displays a hyperlink to one of the documents when the page loads depending on the value of the field. If I add the field to a page I just see the URL displayed. I don’t want to include it in a pop up tied to a row action because I don’t want the user to have to click twice, instead I’d like the formula to be evaluated when the user clicks the row action and then the user is automatically directed to the new browser tab/document URL based on the formula out put.Any help on this would b
Non-grouped query that uses overall aggregate issue in skuid
hi, I have this piece of code to show some messages: var osi = skuid.model.getModel('osi'); var row = osi.data[0]; [...] some calculations.... [...] if(txtwarnings!==""){ skuid.$('#txtwarning').html(txtwarnings).addClass('paddings').addClass('warning'); }else{ skuid.$('#txtwarning').html(''); } if(txtOk!==""){ skuid.$('#txtOk').html(txtOk).addClass('paddings').addClass('ok'); }else{ skuid.$('#txtOk').html(''); } it’s working fine: But If I include (page include component) this page in a popup in other page this does not work. Javascript shows this error message: Uncaught TypeError: Cannot read property ‘data’ of undefined (in line 3) Line 3 is: var row = osi.data[0]; so var osi = skuid.model.getModel(‘osi’); is returning undefined. ‘osi’ is the model id in the included page and in the parent page that id doesn’t exists. how can I make this work?
HI , I want to have alphabetical sorting on my page to extract the records by the start of its letter like we have in standard salesforce page like a, b c, d…plz suggest
I have created one apex class.I am validating some data there.After that I need to display some message to skuid ui page based on the code done in apex class.Is there any way with the hep of which I can display message from apex class to skuid UI.
When blocking the UI, is there a way to unblock the UI if a validation rule fires? I’m currently blocking the UI while a save is in progress and unblock once the save is complete but when a validation rule fires, the save never occurs so the UI remains blocked. I’d like to avoid using the timeout option because I don’t want the UI blocked for 6 seconds when the save only takes 3 and also don’t want the UI to unblock while the save is still being processed.
I have a wizard with 3 steps. Each step creates a new row in a different model. When the wizard opens, I’ve created a new row in Model1. I’d like to use some of those values for fields in Model2 (step2). The actions for the ‘Navigate’ button on Step 1: I save Model1, Create a new row on Model2 with a few of the values from Model1, and then navigate to step2. Any reason why this shouldn’t work? I click the ‘navigate’ button and nothing happens. Nothing. No console errors. Just nothing. Help?
Is there any way to rearrange these elements?
Hi All, When I using iframe in skuid page to include visualforce page, I got salesforce header and sidebar along with visualforce page? How can I remove header and side bar from it? the visualforce page came from managed package. Thanks Shaik
Quick question: I need to a pass a parameter to a Skuid page embedded in a Visualforce page. I can't find how to do this.
Has anyone integrated accusoft document viewer with skuid or another document management process?
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.