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 having an issue creating a signed certificate. Are there some prerequisites or dependencies I should be looking for? The error I’m getting is: Request to data source “SkuidLocal” failed: Internal Server Error: An internal server error occurred Error on Self Signed: Error on CA-Signed
I have a mass action which comprises of a series of actions, out of which one runs a javascript snippet to get the list of selected rows from the model in context and create records in another model - ‘APF_onboardingProduct’.var params = arguments[0],$ = skuid.$,list = arguments[0].list,selectedItems = list.getSelectedItems();var modelORProducts = skuid.model.getModel(‘APF_onboardingProduct’);if (selectedItems.length > 0){ $.each( selectedItems, function( i, item ){ var rowORProducts = modelORProducts.createRow(); modelORProducts.updateRow(rowORProducts, {Product__c : item.row.Id}); }); modelORProducts.save({callback: function(result){ if (result.totalsuccess){ console.log(‘modelORProducts saved’); } else { console.log(‘modelORProducts not saved’); } }});}Once the snippet is executed, I have 2 other actions that requery both the models in question. Everything works beautifully until here. But when I select a
Can’t login or reset the password for the above Skuid site. The client can reset it but not me. Once I reset I’m logged in, but I can’t login normally.
Skuid has great tutorials; I used them when I was learning Skuid, and still reference them today. However, I find the new documentation page not very user friendly.Until about last week, I think, I could still access the old Skuid Tutorials page. Any chance I can get a link to the old version? I can find stuff quickly on the new page.
I have one picklist that based on selection renders a responsive grid viewable or not - it works. I have another picklist that does not work. The difference is the second picklist is based on a global value set. Is that a problem. I now think it has anything to do with global picklists.Here is how I have it set uphttps://drive.google.com/file/d/0B409lhd9sYDcaUttMG9YcEY5YnM/view
All my pages are not rendering any Fields after upgrade to 10. X are there new permissions that need to be enabled with this update?
Here’s my set up. I’m unsure if this is a skuid bug or there’s an issue with my authentication setup. I’m getting an error in the callback. auth/oauth/callback?error=unsupported\_response\_type&state=.... According to https://tools.ietf.org/html/rfc6749#section-4.1.2.1 unsupported_response_type means The authorization server does not support obtaining an authorization code using this method. However, the box documentation specifically dictates that the correct response type is code. Which is how I have it set. Someone on the internet seems to think that this error could be a result of faulty parsing though that seems wrong to me because that contradicts the error description on ietf.org Am I missing something obvious? Either way, it would be nice to get error details on the page itself if possible instead of having to quickly copy and paste the callback url before the window closes.
Hi Skuid Community, Attempting to modify the New Event Pop-Up when creating a New Event. Not sure how to add additional Salesforce Fields to the Pop-Up. Also attempting to organize the Monthly, Weekly and Daily Calendar by the Assigned To person. Trying to make the Calendar to be as similar to Outlook. Followed the Calendar tutorial found in the Skuid Tutorials, but I’m stuck on this part. Any and all help is appreciated. PJ
I have a table under a new tab that shows a list of records of a specific record type. I am showing the record “Name” as one of the table columns. By default, that Name is a link that when clicked opens the page in Salesforce Classic. What I need for it to do is open the record in a Skuid Popup window instead. Is there an easy way to accomplish this?Thanks!
Are the steps to put a clone button on a detail record.
Hi TeamCan we have a filter option to show only values present in records displayed in table for Eg: If a table showing opportunities and a Owner field is added as filter then when i try to search in filter i’m getting in-active users who were not part of the organization and result for them would always be none(in my case). If I would have a filter that can be applied for this (Owner filter) then i can avoid inactive users from being displayed in search values. Can this be possible?Current Work Around:load values into filter from another model (In my case active User Model with active users) by selecting the manual options available along with the condition of model associated with table to be effected.let me know if you need more info.Thanks in advance.Regards,Chandra
I need to display all duplicate account when try to create new account show all related Name , City . State & Country account in table .Basically we need to user not able to create duplicate name account in org from using skuid page .How can i achieve this logic in skuid.
Is Skuid planning on supporting the Client Credentials grant type for OAuth2? Most APIs support the grants that Skuid allows for OAuth authentication providers out of the box, but the ones that don’t aren’t able to be easily used.
Hello All! Me and my team are extremely new to Salesforce, Skuid, and just overall javascript development. But nevertheless, we have developed some javascript that uses node.js and openCv to take in an image of a scantron, process the answers and spit out a grade based on a key that we input into the function. I guess my main question is, in what way(if there is one) do we import our javascript code into Salesforce or Skuid so that we can run the code inside of skuid and the grade can be returned immediately? Here is the link to the openCV so that you can see what we are talking about. https://www.npmjs.com/package/opencvThe final goal of this is to take a picture of a scantron on an ipad, process it, and then upload the grade back into Salesforce. Any tips or feedback is greatly appreciated. Thank you for your help everyone! We appreciate it
I originally thought this was a sliding panel issue as I reported here: https://community.skuid.com/t/sliding-panel-problems-with-conditionally-rendered-components But I’m now fairly certain it is a scale to mobile issue. I have a page with a background image and several conditionally rendered components. When the component is hidden and I trigger it to display, it works fine, but when I trigger the component to hide again, it freezes the browser (mobile safari) for about 10 seconds to 20 seconds. Then I can resume use, but the background image is messed up and choppy. If I turn off scale to mobile, the page works fine.
This is a question and an idea. I have need for a reverse scrolling feature in the deck component in unified builder. Picture the text messaging apps that anchor the most recent record at the bottom and you scroll up instead of down. Has anyone done this? Also, I would like to include it as an idea for development, though there are probably limited use cases, so I doubt it will make the priority list. You may find more people (like me) making more mobile friendly apps that may utilize this function more now that there is the Scale to mobile option which I really love.
I updated some picklist options in salesforce. The field in my Skuid page did not display them. I went through the salesforce trouble shooting steps and it did not help. I cleared cache (chrome). I refreshed the page several times. I ended up deleting the field from the model and adding it back in. Now it brings in the updated picklist options. Thought I would post for someone else coming across this problem.
Let’s say I have a meeting page which is built on skuid.The meeting host can stop the meeting clock or pause the meeting clock.If the meeting status changed. All the opened meeting pages should be reflected for those attendees.For example, when the timer is paused. The vote or comments component should be hidden or READ-ONLY.My approach is that I will run a Javascript snippet in the background and keep polling the status via Salesforce remote actions.Once the status changed, I will disable/enable some Skuid components.The thing is any direction to disable or re-query models by polling the status in the background.Just have no idea how to re-query models or hide components using Javascript within a skuid page.Any idea or direction?
I’m still getting insufficient privileges when accessing the skuid page. I am already included in the skuid viewer permission.
I am using Version Number 10.0.1 Please help me to solve this issue. Thanks
When i am clicking on this button, it is opening popup two times. We are using following actions on the Global Action Button. Please help me to solve this issue. Thanks
Hi,is it possible to connect as another user to create models?For example I want to create a chart based on all won opportunities in the org and show this chart to all salespeoples.
I’m going to have a queue view which will only show a specific record with different fields. Each field as a lookup field which can have a popup to display its detail view. Is there an easy way to leverage Skuid to do so? It seems Skuid only support a collection of records for displaying a queue view.
Love the sliding panels, however: In a sliding panel, if there are conditionally rendered components that are hidden, upon rendering of those components, if the page length increases, the sliding pane does not expand its length or add a scroll bar so you can’t see the content. I worked around this to a degree by adding a wrapper component in the panel set to 95% VH. This gives me a scroll bar if the page length increases below the visible screen. However, the panel behaves very strangely on mobile vs. a pop up when showing and hiding components. Also, I have a background image in the wrapper that doesn’t render well. Instead of stretching it duplicates with gaps or only renders half the page… just an overall glitchy experience on iPhone 7 plus with latest IOS from a layout perspective. I am on 10.1.
We have a javascript snippet in a template that takes in a skuid model and writes it to the page in HTML. When we preview the page it is fully functional and does what we need it to. We can even query the model in the console using “skuid.$M(‘quizQuestions’).data” and it displays all of the info. When we deploy the page and view it using a test user the framework of the page displays(all of the tabs and videos) but the javascript in the template does not run. When we run ‘skuid.$M(‘quizQuestions’).data’ in the console it displays nothing. What could possibly be the issue? and what can we do to get the models to pull into the deployed page?.
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.