Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi, I just implemented something called Dupeblocker, it’s by CRMFusion (they have a great product line). Dupeblocker prevents duplicate records from entering the system - it displays an error message at the top, and provides a link to the already existing record. In native SFDC the error message is fine (picture displayed below), However, in Skuid, the error message is not helpful to the end user (displayed below). My question is, is there any way for me to edit that error message to show something more helpful, similar to what the native SFDC error shows? Mainly, I’m trying to provide a link to the duplicate record. Any advice is greatly appreciated. Thanks. Skuid Error Message Native SFDC Error Message.
I just upgraded to the latest release version and now all of our row action icons are stacked vertically rather than horizontal (which they were before). How do I get them back to a single (tight) horizontal line?
Hi everyone, I have written a Java script(Snippet) for custom Popup that was working for earlier version perfectly. But after brooklyn version it is giving below error: 1. There was a problem rendering a component of type pagetitle: Cannot read property ‘getFieldValue’ of undefined2. There was a problem rendering a component of type basicfieldeditor: Cannot read property ‘getFieldValue’ of undefined Here is my Java Script code: var params = arguments[0], $ = skuid.$; var models = skuid.model.map(); var pi = models.Matter; var raw = pi.getFirstRow(); var SpecialS =raw.Special_Status__c; var rowsToUpdate = {}; $.each(pi.getRows(),function(){ if(SpecialS ===‘Judgment’){ list = params.list, model = params.model, $xml = skuid.utils.makeXMLDoc, HomepageTileModel = skuid.model.getModel(‘Matter’); var contextModel; $.each(HomepageTileModel.data, function(i, row){ contextModel = row; console.log(‘contextModel’ + contextModel.Id); }); var popupXMLString = '<popup width="80%" title="Judgme
We are testing Brooklyn 10.x in a sandbox and have run into a problem that is causing a lot of our pages with custom javascript to fail (which is most of our pages.) Within the javascript, we query a field on a model and then take action based on that field having a value or not. The fields on the object are strings, and: if field is null, do Action 1. if field is not null, do Action 2. This all worked fine, but now the string fiend off the model is coming through as undefined instead of null or “”. So all our If conditions are failing to execute. I’ve build a repro page off the contact object using a native string field that is probably null in most cases. Snippet is simply this: var params = arguments[0], $ = skuid.$; contactModel = skuid.model.getModel(‘contact’);contactRow = contactModel.getFirstRow(); var myVar = “”; // this alert will show null or “”alert("myvar Value 1 " + myVar); // this is a null field on the objectmyVar = contactModel.getFieldValue(contactRow, ‘JigsawContac
When I click Update Out of Date Themes in one particular sandbox, I get this error in the console, and the page just hangs: VM369:1 Uncaught SyntaxError: Unexpected token u in JSON at position 0 at JSON.parse (<anonymous>) at Object.<anonymous> (<a href="https://skuid.cs60.visual.force.com/resource/1505354075000/skuid__CoreComponents/themecomposer.js:4:3885" title="Link: https://skuid.cs60.visual.force.com/resource/1505354075000/skuid__CoreComponents/themecomposer.js:4:3885">https://skuid.cs60.visual.force.com/resource/1505354075000/skuid__CoreComponents/themecomposer.js:4:...</a>) at Function.each (<a href="https://skuid.cs60.visual.force.com/resource/1489487629000/skuid__JQueryJS:2:14130" title="Link: https://skuid.cs60.visual.force.com/resource/1489487629000/skuid__JQueryJS:2:14130">https://skuid.cs60.visual.force.com/resource/1489487629000/skuid__JQueryJS:2:14130</a>) at Object.<anonymous> (<a href="https://skuid.cs60.vis
Odd request here, but does anyone have any ideas around removing a specific character from a field?Example: Account Name is “Client Name #23”. That is the client’s name add feeds a lot of systems that rely on it being consistent, so I can’t just change it to Client Name 23, but I need the # to not be in the field when I use it in a specific skuid page.The reason for not needing it in the specific skuid page is because that page uses the Account Name in a URL and when it loads into the URL with the # it breaks the URL. Any suggestions on how I may override that field to specially remove a certain character like that?Thanks!
Trying to add contact info on a task object table. Only a few select fields are available. How can I add the other contact fields?
I was running into a few UI issues in my sandbox development. Just some quirky field alignments and issues with Rich Text Editors not recognizing data, etc. etc. So I went to go refresh all out of date themes to begin troubleshooting and I discovered the Snippet that the button references is missing from my page. Unsure whether or not this is an issue but if I am missing this can someone post the code so I can update the page and begin troubleshooting this?
how do i change, based on selection of one reference(look up) field value to another reference filed in same model? like dependent pick list but both are two referring(look up) fields two other objects and selection of value and we wants to populate related values in second pick list?
Hi,I’m trying to create a row action in a table to showing in a popup chetter feed.I’ve created a Model with max 1 record and a filter default off on the Id.I’ve created a row action in the table that first activate the filter of the model with Value = {{Id}} and the show a popup with Feed chatte but it seems don’t work.Any idea?
I was attempting to make use of the Day Scheduling View without success and no idea why. There is something missing in both documentation and the tooltip. “This field is used with scheduling views. This should be a reference on the grouping model specified in the Scheduling View.” Should read: "“This field is used with scheduling views. This should be a reference to the Id field on the grouping model specified in the Scheduling View.” I was attempting to use another model where I had a reference field to the user called To_Firm__c, but this can’t be used since the code looks up the Id field.
I have a field with input type as ‘checkbox’. Is there way to change input type from checkbox to radio button?
Hi this was fixed last couple releases for Rockway. After winter 18 salesforce release, we are seeing the Text Area input shrunk to a very short field. Is this a known issue?
when the message is large, text overlap each other and it is not looking good. function showMessagePopup(errorMessage){ var popupXMLString = ‘’ + ‘’ + ‘’ + ‘ ‘+ messageString +’’ +‘’ +‘’ +‘’ +‘’ +'</actions>' +'</action>' + '</actions>' + '</pagetitle>' + '</components>' + '</popup>'; var popupXML = skuid.utils.makeXMLDoc(popupXMLString);
Want to use inline css in skuid xml page
Here’s my formula: IF( {{Signatures\_\_r.records}}, {{Signatures\_\_r.records.0.Signature\_Name\_\_c}} + " (" + FORMAT\_DATE( "m/d/yy", {{Signatures\_\_r.records.0.Signature\_Date\_\_c}} ) + ")" , "" ) Here’s the error I’m getting on runtime: The funny thing is, the formula is actually working. It’s returning the results I expect. But it’s a bad user experience to have an error that isn’t really an error.
I am merging a field into a script. {{Video_Unique_Id__c}} is equal to w4rx51kbzw Three scenarios. The first 2 work the third does not Scenario 1&nbsp;] Scenario 2 &nbsp; Scenario 3 (fails when I try to merge the {{Video_Unique_Id__c}} in the second to last field &nbsp;  Here is what happens on the third. https://drive.google.com/file/d/0BzBJWINUVfkvbEVYNXQ1ZElrOW8/view
Hi at all,I’ve created a formulaIF({{Telefono}}=={{$Model.Pratica.data.0.Azienda__r.Phone}},“”,“!”)It’s working fine but I want It case insensitive. Any idea?Thank you
please reply soon
in chart menu there is no axes.
The Create Row action property “Have associated Components initially show this row in…” set to Edit Mode doesn’t work with field editors. Example: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="true" showheader="true"> <models> <model id="accountTest" limit="" query="false" createrowifnonefound="false" datasource="salesforce" type="" sobject="Account"> <fields> <field id="Name"/> <field id="AccountNumber"/> <field id="Id"/> </fields> <conditions/> <actions/> </model> </models> <components> <buttonset model="accountTest" uniqueid="sk-2boQiu-116"> <buttons> <button type="multi" label="Add in Edit Mode" icon="sk-icon-add"> <actions>
If I have a Skuid model (let’s say, for Salesforce Tasks) and a user updates one of the Task records to ‘Completed’ and saves using the standard ‘Save’ action - would all records be committed to Salesforce in their current state?Or are only the changes committed? It looks like it’s only the changes, but was hoping someone could confirm!I couldn’t find an answer after a few searches, but I swear I knew how this worked at one point … Thanks!-Pat
Hi,How to access Javascript static Resource I’m getting problem I was created Static Resource,by uploading a javascript .Js file ,in javascript snippet i have used Static Resource now i’m getting problem how to access that through actions like Run Javascript snippet ??
how to add css for a column header and also for column particular field seperatlyplease reply soon . advance thanks
Can I get some suggestions on how I can troubleshoot an issue I am having with conditional rendering of components? It’s not behaving as expected and I cannot determine why and I am so ready to be past this issue. I have two wrapper components that conditionally render based on: User ID matches (or doesn’t match) OR User.Custom_Field__c = One of multiple listed values (or doesn’t equal) The logic is such the page is supposed to show only one wrapper component. It working great for most users! But I have one user where Skuid is displaying both wrapper components. The user only matches the criteria of one of the components. I have verified that model that pulls in the Custom_Field__c is populated correctly (by dropping a basic table on the page). Thanks for any thoughts! Wrapper 1 Conditions <renderconditions logictype="or"> <rendercondition type="multiple" operator="in" fieldmodel="RunningUser" sourcetype="fieldvalue" nosourcerowbehavior="skipandnorender" field="Custom_Fiel
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.