Complete our Nintex Community Survey
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
I am pretty new to Javascript, was wondering if anyone could point me in the right direction. In the below script what I am attempting to do is pull in the model User_SFC (user table) and grab specific field values. Then, I want to use those values to map it to my aStr variable fields. There is another part to this script I can’t include, but this is where I am having the problem. Can anyone point in the right direction? var params = arguments[0], $ = skuid.$; var User = skuid.model.getModel(‘User_SFC’); var fields = [ User.getField(‘City’), User.getField(‘CompanyName’)]; var aStr = new Object () ; { aStr.city = ‘$fields.City’; aStr.company_name = ‘$fields.CompanyName’;
For a public access site that is using a SKUID page to display information, what security concerns come up and how can they be addressed? If I have a page that receives a passed ID to do a query, someone can potentially pass a different ID and get information from that ID that they shouldn’t necessarily see. I can perhaps secure this using a “token” along with the ID to run the query, which is my current line of thinking, but what other things might someone exploit on a SKUID public site? Could they somehow (using javascript perhaps) modify the query to remove that token condition? I could set up Salesforce object level permissions to be more aggressive, but in doing so it would really be an all or nothing on a per object basis rather than only allowing the user to query for information specific to them. Let’s say I want to expose the Invoice object to customers through the public site, but only want customers to be able to view their own invoices; how can this be secured? If we set up
Just upgrdaded to Spark 3 and where we haad querystring such as “Status=In%20Progress&tab=progress” having upgraded, these are not getting picked up now?Any ideas?
Are we sure this: If an incoming row does not contain an Id, then Skuid will generate a unique Id for the row.is still true for adoptRows? Have been working through everyone's solutions (thanks btw ;) ). But adopting exact fieldNames etc... the api doesn't seem to be generating Id's.Thanks,AP
Learning some basics of Design Systems with Skuid V2 on Salesforce but feeling stumped by aligning and/or updating positioning of the check marks on the following components following sizing changes: Checkbox, Checkbox List, and Select (viewing as multiselect). See example of how displaying in photo (wanting to move check more toward center in this particular example).*Anyone have wisdom on how to approach this in V2 Design Systems? Thank you!*Edit note: to clarify for this example. The check marks are centered in standard/default design system. They only become off-centered when you increase the size of the checkbox itself, with the marks hanging leftward by default. Curious if there is a setting to change marks positions easily in that scenario.
Is it planned behavior on google drive data source for the ‘title’ condition to pull like a wild card?If condition is set to ‘123’ it will pull files/folders that range from ‘1234’, ‘12356’, basically ‘123*’.Anybody else run into this?Cheers,AP
Hope everybody is well. Has anybody played with closing drawers in v2 when opening new ones (or any of the similar situations that have arisen previously in v1)? Obviously with v2 the way the tables are constructed completely differently, the old approaches won’t work. (Though it has been fun messing around with the skuid.debug to see if they can be replicated). Like cards on decks the drawers ID’s are used in duplication so obvious hackish options are not readily available. Thanks,AP
Sorry about the deluge of OneDrive questions. In the current docs: "Warning There is no Download Link metadata for folders; no file (or folder) will download for folder records. To determine whether a record represents a file or a folder, include the size field. Folders display as Size = 0. "However when I connect, the folders do in fact have sizes greater than zero. Is there a new technique for this? My client doesn’t put “.” in folders so we can cheat for a bit but not a long term solution. Thanks! AP
Running into a fair amount of 403’s today in documents. Links that were working yesterday. ex.https://docs.skuid.com/platform/v2en/data/microsoft/#app-registration-and-oauth-credentials-using-azure-active-directoryhttps://docs.skuid.com/platform/v1en/data/microsoft/#app-registration-and-oauth-credentials-using-azure-active-directoryhttps://docs.skuid.com/platform/v1en/data/google/google-drive.html#usageThanks,AP
I have created a Skuid Model with ProcessInstance object (Native Salesforce object where Approval data is stored) and have placed Model conditions to filter it by Approval Name i.e., (ProcessInstance.ProcessDefinition.Name). For a Salesforce License User, system displays the data on Skuid, however for a Salesforce Platform User, system throws an Error message that “Illegal Filter” and Skuid Page is not displayed at all. Instead the Home Page fo Salesforce is displayed. Is there any way to allow Salesforce Platform User to view the Skuid Page given the above Scenario? P.S- I tried even creating UI only fields on the Model and placing it as Model Condition hoping that it would filter and display the data which i am expecting. Unfortunately, it doesn’t work.
As per title- Setting up SF as data source worked fine (but we have the callback url tool too). Perpetually getting error from MS that he URL is not included but I have included everything I can think of- I know I prob missing something simple. Thanks in advance!AP
Hello, no biggie, just want to report this bug.Skuid Version 12.2.19Any Date or Date/time field from PostgreSQL DB I’m using, even if in the Data Source I Indicate that it should be Sortable, the option does not appear in the builder, in the field property. It works for all other type of fieldsI did it via the XML and it worked, but thought maybe it’s a bug you guys may want to fix.Thx
Discovered first in 12.2.18 When you mark for deleted Odd Rows in a table, they don’t show red. In the images below, all three rows have been marked for deletion. Between the first and second screenshots, I change the row marked as “odd” to “even” in the console, and the colors flip. In the third screenshot you can see the row has the class nx-item.deleted but the background color is white
error trying to create a new user in salesforce
When a field is updated in a Model, Is there a way to populate the old value of the field into a UI only field, before the new modified value is updated for the field without having to write a JavaScript?
In V1 pages you could easily add a CSS class to a component. On V2 pages I’m not seeing this. Is this still possible in V2? (running skuid version 12.1.7) V1 tab set component: V2 tab set component (no CSS class?): Tried copying the XML from the V1 page into the component on the V2 page as well that doesn’t seem to work either. Additionally, it looks like on V2 pages adding CSS is not available? Is that correct? Am I missing something? Thanks!
Perhaps I am overlooking this, but I can’t find anything on how to reload a standard lightning component (i.e. related list) from a SKUID lightning component in which I am performing an action (creating a record that would end up on that related list). Wondering if this is possible natively?
I have a table with a currency field which I would like to style the font-weight but I have added a custom snippet / css (which I then set the field to render from custom snippet) and also tried adding styling directly to the XML, but no luck. Here is the snippet / css in its current form: Snippet: var params = arguments[0], $ = skuid.$; var field = arguments[0]; var element = field.element; var price = field.model.getFieldValue(field.row,‘Current_Price__c’); skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; element.addClass(‘boldPrice’); CSS: .boldPrice { font-weight: bold; }I have played around with this some, but that is basically what it looks like, and I have used variations of this on other pages and it works. Is there a limitation around formatting currency fields? Thanks in advance for any help.
Hi all… just a quick question about the latest Spark update. Is there anyway we can incoporate custom css as we could with the previous theme builder etc?We have some specific screen size requirements and more to incorporate in our app but would love to make the jump up?
I can Successfully send a email using a button with a Salesforce Action: My question is - How can I have one of the email addresses be a bcc?
I have a site page that we’ve been working on and we’re using the File Upload component to upload files to a custom object. The component displays and operates properly when logged in as a Salesforce user, but when viewing the page from the public site the File Upload component doesn’t display. This is happening in 2 separate places on the page involving file uploads, so it’s not specific to the one component. Are file uploads restricted for public users? Is this a permission setting somewhere in Salesforce I need to enable? Why isn’t the file upload component displaying? The Public Access user has full permission to the object I’m trying to do the upload to. Is there a different setting somewhere I need to update? Any answers on this would be very helpful. Thanks! SKUID API v1, version 12.1.7
I’m calling the Apex method from JS snippet and using skuid.utils.createPopupFromPopupXML to display the returned message in popup. I’m passing the returned message in a formatted way using in the Apex and in the JS snippet using tag while forming the xml string. But while displaying in the popup, it’s not showing the formatted message in the popup (formatting comes properly in console. Please assist.
I have a “library” of certain common javascript functions I’ve created and want to include on all SKUID pages. Is it possible to do this? I know in the theme you can set up CSS across all pages, but is there a way to set up javascript across all pages?I know that on each page I could potentially do an inline javascript file include, but in order to do so I’d need to host that file somewhere in an easy place where I can update the file if needed and I don’t really have a web host to do this with – can I do that with Salesforce? Is there some better way to accomplish this?Thanks!
I have a standard Salesforce duplicate rule set up. It’s set to Allow/Alert, which means that the user should see an error when we find a duplicate, but then has the ability to dismiss the error. Does anyone know what I can do to dismiss the error using Skuid? the error shows nicely, but I can’t remove it or save the record.
I am new to Skuid and have no JavaScript experience. I am not asking for any solution work (though welcome ideas!) rather curious if anyone has good online tutorials or training videos they can recommend for Skuid V2.I am trying to learn how to populate fields on a Skuid form pulling from specific Salesforce records. The goal being that users can return to their form submission and update the associated previously submitted record (pulling back that data into the form’s fields and being able to edit/overwrite it). However, my attempts with conditions and queries, using search or UI lookup field, has not been successful yet; I either end up pulling back the wrong record or some reason completely making the form vanish. Feeling lost and could use some 101 training on the topic.I know once experienced in Skuid, this will likely be a very simple issue. However, being totally new to this, I am wondering what online resources might be available. The majority of community comments I see on th
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.