Upcoming Event - Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I cannot see events from the end of the month on month view calendar: end of the April (April view) And can see in May view How can I change it? Best regards Pawel
We have two custom objects - let’s call them “bucket” and “stuff”. A bucket can contain zero to N stuff records e.g. there is a lookup relationship from stuff to bucket. Because it is a lookup relationship stuff has it’s own _share object. Because of the way stuff is being bucket(ed), users that can see the stuff related to a bucket may not be able to see all of the stuff related to the bucket. We have a requirement for a bucket Skuid page that has two tabs - a tab that lists the stuff in that bucket that the user has read or read/write permissions on and a tab that lists the stuff that the user does not have permission to read. To the best of my knowledge I can’t use a model to display the list of stuff records the user can’t at least read. In a class.method “without sharing” I can get at the unreadable stuff records, but how do I pass them back out to Skuid to be displayed on the page? Or (hopefully) is there an easier way to tackle this?
Currently, the “add event” button on the calendar is stuck on April 2nd. All other dates appear to be inactive. Also, the pop-up calendar for month-by-month scrolling to the future or the past is stuck on April 2015.Any suggestions would be greatly appreciated!Vickie
We have 3 models, 2 are aggregate for use with Charting and the third is a basic chart for pulling specific report related data. We have a Tab Set and use the Picklist function. The two charts draw pretty much immediately, but the table takes about 30 seconds to display. It is obviously using a selection criteria that returns 66 records from a thousand or so. The we have a filter that allows the user to filter by Category. If you change the filter is takes a minimum of 50-60 seconds to re-display the information. I know that using the aggregate model will allow SF to do the processing and basic brings the record set down to the end user, but this is quite un-usable. Can you have an aggregate model and still bring fields into the table that are not defined as aggregations?
I have a table that i’m trying to display the name of the month instead of the number. I have: I found this that should work to add the name, but i can’t get it to work: var d = new Date(); var CreatedDate = new Array(); CreatedDate[0] = "January"; CreatedDate[1] = "February"; CreatedDate[2] = "March"; CreatedDate[3] = "April"; CreatedDate[4] = "May"; CreatedDate[5] = "June"; CreatedDate[6] = "July"; CreatedDate[7] = "August"; CreatedDate[8] = "September"; CreatedDate[9] = "October"; CreatedDate[10] = "November"; CreatedDate[11] = "December"; var n = CreatedDate[d.getMonth()];Any idea on what I'm doing wrong?Thanks in advance for any help!Kris
We are using Salesforce’s State and Country picklists. When we display the State/Province Code in a separate column on a table component, the field shows the appropriate ‘state’ based on the selected country code and state/province code on the record. When we display the State/Province Code in a template field, it pulls in the wrong ‘state’ for the selected country code and state/province code on the record. In this example, you can see that we have set the state and country to be Pennsylvania and United States. Viewing the same record in a template field, shows: Note that ‘Palermo’ is a province in Italy. It’s State/Province Code is ‘PA’ and matches Pennsylvania’s code.
Hi,how to enable/disable row actions edit / delete button based on user access level.For detail page buttons we have unique id, which helps to refer in the javascripit,incase of row actions can we able to set unique id which we refer in javascript.any solutions
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
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.