Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I have a tabset “parentTab”, with tabs (a,b,c,d,e). In tab b, I have a button “redirect”, on button action, I’ve added the below JS snippet. I assume that should navigate the tab to tab - “d”. But nothing happens. $ = skuid.$; $(“#parentTab”).tabs(); var tabSetId = “#parentTab”; $(tabSetId).tabs(“option”,“active”,3); Am I missing something?
We have a Skuid page on a community. It works for user A. It doesn’t work for User B. User B has the same profile and the same permission sets. Any ideas?
Can anyone explain or point to documentation in Skuid on this error? “You do not have sufficient privileges to access the controller: Remoting Stubs”. Who is You? Where is the Remoting Stubs controller? VF Page? A good practice when developing is not make a general error statement and leave the user in the dark. I searched Skuid and came up with nothing! Why place an error message without a way to correct or help the customer resolve?
I have created a in-line snippet and moved the changes to Prod successfully. But the problem is sometimes that snippet works sometimes doesn’t. Only when it starts to work if I make some changes to the code anywhere like console.log or alert to check if the snippet is loaded and working or not.
I have created few public groups and I would like to use it in skuid instead of adding users individually. Is this even possible? If yes, please can someone explain me the process to do it.
Defect/Issue Description: All columns will not render in any forms despite appearing on the page layout.A description of the bug All columns will not render in any forms despite appearing on the page layout. Environment: production API Version: (v1 or v2) v2 Release: (Chicago, Boston, etc) Dubai Release version: (Version Number) 15.0.11 Platform: (Managed cloud or Salesforce) Salesforce Brief Summary of the Defect/Issue: All form columns will not render - everything becomes one long running column on all forms. An easy-to-understand description of the bug (e.g., “When mass selecting items (not including clicking the ‘select all’ checkbox), other checkboxes on the rows selected appear to take on a checked value.”). Open any form, columns are gone, everything is skinny and tall. Action Performed: Open any form that previously had columns.The action that resulted in the bug Open any form that previously had columns. Expected Result: Show form with columnsHow the page should have perfor
Hello Skuid Community! I have a calendar component on my Skuid Page, and I was hoping to provide the ability to create a new record based on the values of the particular record a user is interacting with in the calendar modal. However, I’m struggling to figure out how to give the page this context - it just defaults to referencing the first row of the model instead of the row being displayed in the modal. I do have an update action on the record shown in the modal that works well and respects the context, but I lose that context when I try to reference that model for a value in the new record: What seems strange is that my modal has three components, all of which have the same context parameters - however, the button is the only one that defaults to using the first row of the model rather than respecting the context: Any help on how to add the context, or build another model that can reflect this record ID and be used to create the new record would be awesome! Thanks in advance Skui
From the SKUID model.model page ( skuid.model.Model — Skuid v15.1.6 Documentation ) you can flag a row for deletion in javascript using the deleteRow function, but if you’re flagging many rows for deletion (several thousand) you need to loop over all of them and flag each of them which appears to run very slowly (I assume it also invokes a display update). Like the updateRows function that allows you to pass many rows at once and only have a single display update, is there some sort of deleteRows function? There doesn’t appear to be. Is there another way to go about this that is more efficient than looping through the whole model and running deleteRow on each row? Thanks!
I have several URL redirects in my skuid pages to go from one step to the next in the process, and change records. However, these will not load the full webpage. Whenever the redirect occurs, it takes the user to the correct page, but doesn’t load the scroll bars on the side. A simple refresh of the page brings back full functionality, but it never works from the actual redirect. I’ve tested this on Chrome and Edge, which both produce the issue.
Hello! I am hoping to display a warning message to users if they select a combination of filter set values that are problematic for the use case. Specifically, we’re using a date field, and want to warn the user to double check their intentions if they select dates that span across two separate years. Does anyone know if it is possible to reference the filter values set by the user to control rendering?
This is likely a stupid question where it is simple and just evading me… I have a single object, let’s just call it email With two fields To and From I want the model filtered where To is me OR From is me Filtering out all other records where I am neither in the From or the To I have built both conditions and set the Grouping logic as (1 OR 2) My only options under the conditions are “If no row in source model, then…”: Deactivate this condition, or Abort this model’s query. If I select Abort this model’s query, I get no results. If I select Deactivate this condition, I get results where I am not in the To or the From field. Is there a way to do this filter on a single object?
I searched this forum and couldn’t find a clear answer.My goal I would like to be able to display a Skuid page with basic aggregate metrics on my Contact Salesforce object with over a million records and for this data to update automatically with my Contact object.1st Approach I developed a Skuid chart that performs the aggregate count function over my salesforce Contact object containing over a million records and ran into two constraints. For normal users, it could only count records they have read permissions to, which would not be the entire dataset. For admin users, the loading the page would generate an Apex CPU time limit exceeded error, likely because a million records were being counted at that time. The records should be counted once and stored as a value to access, so that’s why I next tried roll-up summary fields.2nd Approach I created custom object with a roll-up summary field. My Contact object was already a master in a master-detail relationship so creating a master to
You know how you can set the running user of a report? Can a Skuid wizard set a running user as well? The use case is this: We want a regular (non-Systems Admin) user to be able to change another user’s profile and add a permission set with “the click of a button” type of functionality. Can this be done? Thank you!
I have created two pages, in page 1, I have a section from a model, that I need to display based on another model field value. In the action sequence I’ve queried that model. It works fine but I need to reload the page to see that change. Is there any way to reflect the change, without having to reload the page?
I am trying to get a field value using javascript but data.0 is giving error. Please suggest if the 0 is causing Uncaught SyntaxError: Unexpected number. cmodel = skuid.runtime.getPage('RSS_Support_Mainpage__v2').model.getModel('DialPad') //Ye {_parentPageId: 'sk-2n8w-14', dataSourceName: 'salesforce', dataSource: E, processOnClient: true, id: 'DialPad', …} cmodel.data.length //1 cmodel.data.0.Description //VM6472:1 Uncaught SyntaxError: Unexpected number
Hi everyone, it looks like showing through a field’s help text in a table is not possible. Is that true? Many thanks A
I have been banging my head against the wall trying to use a version of documentation to display a list of picklist values on a UI-Only field. I’ve been following the documentation and confirmed that it works without any changes from v1 to v2. However, it doesn’t work when I try to run the same snippet (slightly modified) to render a picklist field instead of a table filter. I’ve boiled it down to a very basic problem - it won’t console log the models ‘data’ property when I try it like so. var RecordTypeModel = skuid.$M('OpportunityRecordTypes'); console.log(RecordTypeModel); console.log(RecordTypeModel.data); var picklistValues = [] return picklistValues; I receive the following in console.log which doesn’t make any sense to me. How does a log of the model show the data property with 2 items in the array and then immediately logging the data property itself show blank?! I tested this on a v1 page and v2 and it’s only broken on v2. Any idea what is happening behind the scenes that
Hi, I’m looking to have a ‘table’ that picks up the starter conversation (section of a row) from another table, and then let people have the ability to discuss issues raised by the first table. I was thinking of a drawer but not I don’t see how this could work. I would like something that works a bit like chatter or teams but not them! Is there something out there that would work? Something that allows for discussions or chats? many thanks A
I’ve a table with rows from a model, I added a template field from that model. It shows a edit icon, when clicked displays a modal to capture the data. I want to display an “add” icon/button instead of that edit icon, also make it visible all the time. How can we achieve that?
Hello, I’m trying to override a new record page for a custom object in Salesforce. Is the best way still to go through Classic deployment and create a visualforce skuid assignment page? If so, where is the documentation for this? I tried this link, but it’s broken. https://docs.skuid.com/platform/v1/en/skuid/deploy/salesforce/visualforce/page-assignments
It may be right in front of me, but I can’t see it. Let’s say you have a table called stage with three fields: id, sort order, text You have another table with a reference field to that table: displaying the text field and storing the id I would like to display the reference field drop down sorted by the sort order field so the stages are in order I can’t seem to find the ability to specify the sort in data sources, or field override. Is this possible?
I am migrating from v1 to v2 in Skuid 15.0.7. I was using an error message system similar to what is discussed here however the same system doesn’t work in v2 even when I add a blank Title with the same unique ID as the Page Title in the v1 version of the page (It seems when migrating the Page Title component was removed and the closest alternative in v2 is Title). This is the code I used previously to display an error through JavaScript. var pageTitle = $('#PageTitle'); var editor = pageTitle.data('object').editor; if("some condition"){ editor.handleMessages( [{ message: 'some message', severity: 'ERROR' }] ); return false; } But now I’m getting this error I’m assuming this is because It’s not able to access the component with the unique Id specifies because the component (Title in v2) does not support it or it doesn’t have the editor object. In either case what is the alternative the can be used to achieve the same result in v2?
Hi everyone, nice to be back and asking questions! I have a pop up that has buttons. One of the buttons runs numerous actions. The one before last is to close the pop up, and the last one is to save the model. Currently the last action doesn’t take place. Could it be because it’s before closing the pop up? Many thanks in advance!!!
I’m looking for TREND V2.3 wordpress theme, please share the website which you know!
When exporting a design system in skuid I’ve been getting an error This CORS error on its own can be bypassed by using the link within the error message to download the zip file. After I did some digging I found this zip file is the same as the zip file stored in the static resources which I’m assuming is where the original design system is stored. However when I try to import this zip file I am met with another error. “The uploaded file is not a valid skuid theme” Is this a common error? And is there a solution?
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.