Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi Skuid Community, I have a Table to store the list of invoices details. For each Invoice Detail, There will be an attachment of Invoice copy (Attachments object is used to save all these attachments). So i created a drawer and within that drawer, by using the file upload component i wanted to upload the Invoice as an attachment. The drawer has a file upload component and below the file upload component, there is a table component (which shows the related attachments uploaded). It looks like this My problem here is, i am not able to filter the attachments related to the Invoice detail. For example the attachment “My invoice attachment” under the “test invoice” record. But even when i open any other invoice record i am seeing the same attachment popping in the table. How can i filter attachments based on the Invoice record ID? Right-now, the condition that having on my attachments model looks like this Invoice Line Item is the model where i have all my invoice detail records and Par
Following option used to work with the clone parameter without the “=anythingyouwanthere” portion. Used to work URL pre Brooklyn:https://mblazonry–c.na16.visual.force.com/apex/Journal_Entry_Detail?id=a0fj0000004AMFBAA4&clone
I’m trying to create a formula field to return “Yes” or “No” to use in a button to set a picklist value based on another field value. Does anyone see any glaring issues with this formula? IF(CONTAINS({{Fee_Structure__c}},“Billed”),“Yes”,“No”)
I recently updated to Skuid Brooklyn, but am now unable to edit some of my existing pages. When I try and load the pageBuilder I just get a blank page. When I look at the page in chrome console I see the following: Uncaught TypeError: Cannot read property ‘defaultStateGenerator’ of undefined at g.componentRenderer (https://skuid.na37.visual.force.com/resource/1480951700000/skuid__CoreComponents/builders_core.js:4:…) at g.renderComponent (https://skuid.na37.visual.force.com/resource/1480951759000/skuid__BuilderCoreJS:2:6877) at e.refresh (https://skuid.na37.visual.force.com/resource/1480951759000/skuid__BuilderCoreJS:8:13141) at new e (https://skuid.na37.visual.force.com/resource/1480951759000/skuid__BuilderCoreJS:7:4890) at b (https://skuid.na37.visual.force.com/resource/1480951759000/skuid__BuilderCoreJS:7:2533) at c (https://skuid.na37.visual.force.com/resource/1480951759000/skuid__BuilderCoreJS:7:2634) at Element. (https://skuid.na37.visual.force.com/resource/14
Cannot open a skuid page in page builder but the same page i am able to load in production console.I get the fallowing error in console when i inspect the page builder. Error: skuid__SkuidJS:11 ‘webkitIndexedDB’ is deprecated. Please use ‘indexedDB’ instead.(anonymous function) @ skuid__SkuidJS:11 builders_core.js:4 Uncaught TypeError: Cannot read property ‘defaultStateGenerator’ of undefined(…) Please see the screenshot: !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20161212-26430-17yvua7-2016-12-12 6 inline.png “Image: https://d2r1vs3d9006ap.cloudfront.net/s3\_images/1521971/RackMultipart20161212-26430-17yvua7-2016-12-12\_\_6\_\_inline.png?1481540490”) Please help.
I’m trying to follow the tutorial at https://docs.skuid.com/latest/en/skuid/javascript/snippets/queue-custom-item.html and copy-and-pasted the XML code from https://bitbucket.org/skuid/samplepages/src/1e02bf5a392e141442b992e270ce593345faa979/pages/Drag%20an… into a new Skuid page. However, I am getting the following error:Failed to parse XML due to: entity reference names can not start with character ‘&’ (position: TEXT seen …el.registeredEditors,function(){ if (this.element &&… @177:34) Any idea if there is something wrong with the sample code? Or am I doing something wrong?Thanks,Andrew
I am trying to setup skuid to use Odata1-3 to connect to a Informatica realtime odata source that is connected to SQL server. When selecting the External Object Name, I get the Not Acceptable error message. I used the same Informatica end point with Lightning Connect and it was able to retrieve and sync all my tables. https://ps1w2.rt.informaticacloud.com/active-bpel/odata/v4/JDBC-xxxxx My initial guess is that maybe Skuid is not compatible with Odata V4?
Our Dev team has grown and keeping track of all the different changes has become problematic. Is there dev tool that people like that incorporates changes made within Skuid and Salesforce in one easy to use tool? It is my understanding (perhaps incorrectly) that the Git for Skuid will not help with SF changes. Thanks in advance for any input!
I have Brooklyn Update 1 9.5.0 What do I do with Update 1 Iteration 1 ? What do i do with Iteration 5? If both, then what order?
We are cloning and saving latest record from a model using a javascript snippet which is invoked on a button click. This functionality was working fine earlier and does not seem to work anymore with the latest release of skuid (Brooklyn Update 1 - Version # 9.5). The error I get on console is “Uncaught RangeError: Maximum call stack size exceeded while cloning a record.” When I tried to pinpoint, the field it is choking on is - " __skuid_record__" Looks like, it is getting into an infinite loop while copying that field from record to record. . When I updated snippet to exclude that field from copying i. e. if I add italicized code shown below to the snippet, it seems to work fine at this time but was wondering if we could get to the root cause? Any idea about what is going on? Any changes / suggestions for the javascript? Thanks in advance for all the help! 🙂 ============================== Snippet ============================ var params = arguments[0], $ = skuid.$; // Get Model var
I asked this 2 yrs ago here, https://community.skuid.com/t/salesforce-to-salesforce-connection-sent-fields-not-working, but wanted to see if anyone else has come across and found a solution since then.If you use Salesforce to Salesforce then there is a ConnectionSentId available in the Tab filters. So far that is the ONLY place I have seen where you can use that field in a query. So I can filter on objects where ConnectionSentId = Null. If I try to use anywhere else it doesn’t work as it’s supposedly unavailable for queries.But Salesforce uses it somehow in those filters so has anyone found a way for me to use that in a Skuid filter? It makes many of our tab pages unusable right now as we cannot definitively tell if a record has been shared or not.
hello js gurus... trying to use the standard skuid in-Line js syntax: (function(skuid){ var $ = skuid.$; $(document.body).one('pageload',function(){ var myModel = skuid.model.getModel('MyModelId'); var myComponent = skuid.component.getById('MyComponentUniqueId'); }); })(skuid); to work with this windows on load js sytax: window.onload = function() { var display = document.querySelector('#time'), timer = new CountDownTimer(15500); timer.onTick(format).onTick(restart).start(); function restart() { if (this.expired()) { setTimeout(function() { timer.start(); }, 1000); } } function format(minutes, seconds) { minutes = minutes < 10 ? "0" + minutes : minutes; seconds = seconds < 10 ? "0" + seconds : seconds; display.textContent = minutes + ':' + seconds; } }; Here is my jsfiddle: https://jsfiddle.net/rogers0000/wzkz3tg1/ <script async src="//jsfiddle.net/rogers0000/wzkz3tg1/1/embed/js,html,css,result/dark/"></script> I’m trying to envoke this from a popup button. I’m gu
I am received the above error when attempting to load a page from a newly created tab. The VF page that controls the page include is included for the profiles experiencing the issue. The link to the page works fine for everyone, but the tab does not. It may be caused from two tables on the page being conditional rendered by profile. When I remove the conditions, both tables load fine. Very odd. Error when logged in as a user: When logged in as myself:
The external links are missing and the formating issue still exists in Iphone and Ipad. And then when I refresh I get “Loading Theme Composer” forever.https://drive.google.com/file/d/0B409lhd9sYDcbzQ2LUhTMDRRVDg/view
Hello, this has been happening more and more and now to a point i cannot access big part of all account records The weird thing is that I’m the only user experiencing this issue… Any other user on same records , all behave fine. I cannot see any reason except i’m the Admin maybe? We are all using the same browser (Chrome Version 55.0.2883.87 m) Our Skuid version is: 8.15.14 Here’s error in details Any ideas? I’m really stuck right now and cannot work on skuid… Thank you
Using the search feature I found and replied to this question on this post: https://community.skuid.com/t/new-row-added-to-model-through-adoptrows-not-showing-fields-in-the-table However, the original answer, didn’t seem to correct my issue. Below is the question and code. Any help is greatly appreciated. Using adoptRows brings data into the model. However, I’m creating the skuidTable component dynamically using the code below. As you can see in the attached screenshot, the table recognizes the rows, but doesn’t show any data. In the component code, I’ve added the field I expect to be displayed. var xmlDefinition = $xml( '<skootable showconditions="false" showsavecancel="false" searchmethod="client" searchbox="true" showexportbuttons="false" pagesize="10" createrecords="false" model="PriceList" mode="read"/>' ).append( $xml('<fields/>').append( $xml('<field id="Product" allowordering="true"/>') ), $xml('<views><view type="standard"/></views>
I need the ability to set the page of a table dynamically but can’t find a way to call skuid.$C(“tableProjectTasks”).element.list.goToPage(n);. The use case is this… User is on a page that has child records(many) with pagination. The user clicks on one of the child records and goes to that record. I have a back button that brings the user back to parent page and the users have asked to bring the user back into the page of the child records from where they originally started.
I’m guessing that the renderAs=“pdf” tag would not work on visual force pages with Skuid Redirects. Anyone know? Salesforce Developers
How do I resolve this? This is not good.
I am using the Skuid editor to create merge documents. Works pretty good except for fine tuning. As an example in edit mode this page looks like this The received email it looks like this: Notice the extra space. When I look at the html in my html I can see the extra padding. But see no way of messing with the html in the skuid editor. Any workarounds?
When I click the add new finger lakes opportunity, and then add one. it brings me back to the opportunity page and on the pipeline tab the add new record button is still appearing when it should disappear after I add the new record.It is very confusing to explain and much easier to show you. I am comparing the button conditions to one that is working and they are exactly the same so I do not understand what else to check.
Hello. Backstory: Tried using my SharePoint lists’ ‘calculated field’ to sum multiple values but find that data type is not compatible with Nintex forms. here is what I got from a previous question. The bullet point is my question for this thread. This is a great question.The calculated data type column is not compatible with Nintex forms.That said, if you look at the SharePoint designer's New Form, you will not see this column type either.Cool Nintex courses: https://learn.nintex.com/Ok, Thanks for that. Question answered. I’ll start another string to ask the obvious, in my Nintex workflow that engages when the form is submitted, I now see the option ‘Calculate a value’. Appears though to only be able to add just two values period. Then appears that first sum has to be put into variable that is then introduced into another 'Calculate a value’ to be added to and then on and on. Many steps, really. Is there a way in the workflow to add many number fields in one step ? Again, than
From this. Bill{{#$Model.ARDetail.data.0.isServiceOrder__c}}able{{/$Model.ARDetail.data.0.isServiceOrder__c}}{{#$Model.ARDetail.data.0.isInvoice__c}}ed{{/$Model.ARDetail.data.0.isInvoice__c}} ({{$Model.LI_BillableEvents.data.length}} + {{$Model.LI_BillableWork.data.length}}} Used to display Billable or Billed without the icon.
I created a popup from a button set and would like to use the button I created inside the popup to refresh the charts inside the popup after a user has cycled through each of them without having to hit the back button in the charts. I also want to avoid the user having to close the popup window and accessing the charts again. Trying to save them time and avoid clicking, closing and reopening. Here’s a screenshot of what I’ve laid out. Any help is greatly appreciated! Thanks!
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.