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
Skuid Team, I have a client that wants to connect to a Microsoft SQL Server data source using Windows Authentication. Is this supported? If so, how would I set this up? They are on Salesforce with Skuid 12.1.1 Thanks, Bill
I recently upgraded my sandbox from version 10 to version 12. I am getting the following error on some page loads. Error: There was a problem rendering a component of type skuidpage: Cannot read property ‘getConditionByName’ of undefined Should ‘getConditionByName’ not be used in version 12?
Hi Guys,My prod skuid version is pretty old (10.0.23) and testing new version(12.2.10) in sandbox to see if anything broke before I deploy to prod.I’m on V1One of the first issues I encountered is the followingIn all template fields with custom popup, when i click on pencil edit, it does nothing, no popup comes out.In the page builder it works fine, but on record, nadaI updated the themes, still did not helpAny ideas?if it’s default popup it works fine…
Is anyone else experiencing a lot of time out issues. In our production or clicking a link to open another skuid page is giving cpu time out issues. If I refresh a couple of times eventually the page will load. We are also seeing that some our classes that get kicked off via a Skuid button are timing out. I don’t seem to see any pattern as to when it will happen. Trying to see if this is a bigger issue or something specific to us.
I have update Skuid to version “12.2.8” in the Salesforce sandbox. and its showing error “1. Theme could not be found. Test Defaulting to Classic.” and also there is no option of “Update Out of date Theme” under the theme tab
My organization collects staffing data from its grantees once a year. We have a form which allows users to add and edit staff member records. The form includes an “Add New Staff” button which is configured to trigger two actions: Create a new Contact record and populate it with the appropriate record type and key field values Show a popup to edit and save the newly-created Contact record. This form worked correctly last year. This year, the popup no longer displays. I’ve been able to determine, using the Javascript console, that clicking the button does cause the new record to be created and added to the appropriate model. However, since the popup doesn’t appear, we’re unable to edit or save the new record. The Console does not show any errors. When we went back to the version of the form we used last year, we found the same behavior. We know that the form worked last year, so we’ve ruled out the possibility that the problem is caused by any of the changes we made to the form for this
I have been working with the V2 version of Skuid when creating pages. Its a change but there are definitely some things to really like even if implimentation is a bit different in V2 vs. V1 in some aspects.However I can’t for the life of me figure out how to create a calendar to display dates in SF records the way I did in V1. Is it a native component option that I am missing now? Is it an external component that can be downloaded and included?What is the current best way to implement Calendar displays in V2?
I have a table I’m looking to print (physical printer). The rows in the table span multiple printed pages. When the table is printed it will continue to the next page and even the table header/footer rows are shown on every page which is a great feature.Unfortunately however there are no page margins, causing the header and footer rows to be cut off when printed. How can I go about adding these margins for printing on my SKUID page?
I have a master page which publishes an event when a popup is closed. After upgrading from Brooklyn to Spark, the event publishing seems to be failing, and I’m getting this error in the console: Help?
Hello! I am trying to export data from 2 related models into 1 csv file. I am using the exportData() function but I understand that it accepts only 1 model so I wondered if I should use a third Ui-Only model to populate the data before. A test version of my current snippet would be: var $ = skuid.$; var model1 = skuid.model.getModel(‘Model 1’); var model2 = skuid.model.getModel(‘Model 2’); var fields = [ model1.getField(‘Id’), model1.getField(‘Field1’), model1.getField(‘Field2’), Here is where I would like to include a new column using a field from model2 (related to model 1 via a lookup field) ]; model1.exportData({ fileName: ‘MyExportFile.csv’, fields: fields }); Many thanks, Jesus
I have the following inline js resource, which worked fine in Brooklyn but now is throwing an error in spark. The error is “There was a problem rendering a component of type skuidpage: Cannot read property ‘split’ of null”. The error is being thrown on the line bolded in the code below.What’s the solution, here?//Custom Formulas//(function (skuid){//Shortcuts & Global Variables//var $ = skuid.$;//Formulas//var formulas = {‘REMOVE_TEXT’: [function (string_to_search, string_to_remove) {return string_to_search.split(string_to_remove).join(‘’); }, {numArgs: 2, returnType: ‘text’}]};//Register Formulas//$.each(formulas,function(name,formulaArray){ skuid.formula.Formula(name, formulaArray[0], formulaArray[1]); });})(skuid);```
This is my first time trying to override a tab for a custom object to a Visualforce page that redirects to a Skuid page. It appears that the tab is taking the user to the Visualforce page but then the Visualforce page redirects back to the original page and I see “nooverride=1” in the URL. Here is what I’ve done:I have a custom object Group_Service__c (label = Group Service) I have a Skuid page GroupServieList with "Tab to Override" set to Group_Service__c I have a Visualforce Page groupserviceRedirectSkuidTab with Markup I set the Group Service object's "Button, Links, and Actions" setting for "Group Services Tab" to groupserviceRedirectSkuidTab The user has a Skuid licence and a permission set that gives them "Visualforce Page Access" to groupserviceRedirectSkuidTab. I'm assuming I'm missing a step---any help is appreciated!
I just upgraded from Brooklyn (10.0.27) to Spark (12.2.9). All of my custom components are now broken.Any ideas on where to start looking?
HelloI found what I can only assume is a bug on Spark pages for multi-select picklists. In the page builder for multi-selects, there is an option for max selectable items. When I set this to a number less than the amount of options in my picklist, there is no change in behavior on the page, and the console shows a warning that 'maxSelected is not a valid attribute of <skuid_field/>.So the page builder is essentially asking for an attribute that does not exist. FYI, I don’t actually need to limit how many options are selected. I just need the select all option to go away, which there is also no option for. I had assumed preventing the user from selecting all of them would remove that automatically.Is this a known issue? Is there any way to remove ‘select all’ from a multi-select picklist in spark?Thanks!
How can I display timeline chart using skuid charts. I have to create a chart which will have only single line with different dates in increasing order. Please suggest
Is it possible to create and set a new model condition on a model using Javascript? I’ve tried looking at the API documentation but I can’t seem to find a function for creating a new model condition on a model.
I’m creating a dynamic model with javascript for a custom component, and getting an error: “Unable to load Model(s) - JSON deserialization failed: Illegal value for primitive” I think it has to do with the way I’m attempting to create ui-only formula fields in the model. Can someone take a look? var timerModel = new mm();<br>&nbsp; &nbsp; &nbsp; &nbsp; timerModel.objectName = 'Process_Log__c';<br>&nbsp; &nbsp; &nbsp; &nbsp; timerModel.id = "Timer";<br>&nbsp; &nbsp; &nbsp; &nbsp; timerModel.doQuery = true;<br>&nbsp; &nbsp; &nbsp; &nbsp; timerModel.preventUnloadIfUnsavedChanges = false;<br>&nbsp; &nbsp; &nbsp; &nbsp; timerModel.recordsLimit = 0;<br>&nbsp; &nbsp; &nbsp; &nbsp; timerModel.fields = [<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
I’m utilizing a template: {{Event_Date__c}} {{TimeHour__c}:{{TimeMinute__c}} {{TimeAMPM__c}} The values in each field are as follows: Event_Date__c = 2019-05-09 TimeHour__c (Picklist) = 10 TimeMinute__c (Picklist) = 30 TimeAMPM__c (Picklist) = AM The template field is displaying this: 5/9/2009 model=Lifecycle_popup__life_event , field=TimeAMPM__c , rowid=a2sf4000000t1L3AAI , value=AMsk-merge-1bNf-3 Why is this happening? What can I do here? My mind is boggled.
Hi Skuid Community, I have a wizard button that I’m trying to deactivate based on a field from another model. I know this isn’t possible from the Skuid UI, but I’ve updated the XML to change the condition type from “fieldvalue” to “modelmerge” in the hopes of getting this to work. (Doing this actually makes the model and field picklists available in the Skuid UI - at first I tried to just add merge syntax to the XML.) But, still no luck changing the button rendering. Should this work? Here’s my XML:
I tried creating Skuid Pages in my developer Org. For most of the pages, the loading time for Skuid is an issue. Even for a normal Skuid Page with only a UI-only model and no queries involved also takes more than 3 seconds to load. Is there any way to improve the loading speed and to bring it under 2 seconds?
Hoping someone can help me with JavaScript. Thank you in advanced for any help fixing the script.Use Case:I have two models that I am trying to update. I have a table of sublines and a table of inventory. I want to link the sublines to inventory and inventory to the sublines. The user selects lines from the subline table and clicks a button that kicks off a snippet. The snippet should run through each subline and associate it with an inventory position. Problem:The problem is only the first inventory position gets updated and all the sublines get updated with the same inventory position. (See Screen Shot)Snippet:var params = arguments[0], $ = skuid.$; var models = skuid.model.map(); var AllocateBOMSubLine = models.AllocateSublines; var BOMInventory = models.InventoryPositions; var InvRow = BOMInventory.getFirstRow(); $.each(AllocateBOMSubLine.data,function(){ //Update Invnetory if(this.Inventory_Position__c === undefined && this.Status__c === ‘In Process’){ BOMInventory.updateR
I have a model with 2 child relationships on them with LIMIT 1 specified. I’d like to find the greater value of two fields on these 2 child objects and put them into a formula field on the parent object. Is this possible? How would I go about referencing the child objects in a formula on the parent object?
In V1, links opened in the service console tab within salesforce when selecting target “_current”. However, v2, it tries to navigate to the page within the current page and asks whether it’s okay to leave the current site. Target _blank opens a new tab in browser. How can i get v2 to open a tab in service console in v2
Hey!I am on the latest skuid version and I am still having the issue where search suggestions and drop down menus go behind page includes. Any idea on when this will be fixed?
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.