Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I’d like to be able to create cross-object skuid models. I’m attempting to skuidify the recycle bin, and would like one skuid table with data from multiple sObjects. But I haven’t found a good way to do it. Closest I’ve come is to create separate models for each sObject, and then use .adoptRows() to pull the data into one dynamic model. Trouble is that I can’t really manipulate the data in the new combined model.Any ideas?
Hey Skuidsters, I am currently learning about master and child pages. I have included a page region in a popup on my master page. Upon editing the child page, I am unable to access the page region through conventional means, because the button to configure the popup is disabled: I have found a (not so user-friendly) workaround for this: Note down the Unique ID of your popup page region by clicking on it on the Master page Create a second Page Region on the main page of the Master page On the child page, do all your edits in that new, second Page Region you added in the previous step Save your child page and go to edit the xml You will find your region referenced with something along the lines of Now swap out the “wrong” regionid (in this case: sk-QH2Dc-329) with the regionid of the Page Region in the popup that could not be accessed from the user interface. Remember you noted this down in step 1. So if the ID of the Page Region in the popup from step 1 is “sk-QGNRs-325”, your new,
this will be an unmanaged app its in use by one organization
I thought maybe this was related to the blank screen on first load, which has affected us a lot: https://community.skuid.com/t/blank-screen-on-first-page-load?topic-reply-list[setting…But then I couldn’t reproduce it when I went Incognito (though I was able to reproduce an initial blank screen), and I’m not able to reproduce it consistently. Video of the error. I had been waiting to see it again to make this, but of course forgot to open up the console. When I see it next, I’ll record a new video, unless someone knows about this issue with LastViewed Datehttp://ilos.video/ByC9e4Update: tried to embed the video, and it shows up on the Edit screen, but hides after saving. [Would be nice if y’all supported Ilos Video links - they’re a really neat company for doing screen recordings, based in Minneapolis but doing the TechStars program here in San Antonio for a few months]
Hi, This issue has been causing me issues for a while and cannot seem to find a solution.I have a couple specific tables with toggle filters, If i toggle a filter and it returns no row, the whole table disappears on me.Example a toggle named : Last Month. If my model has no row that match that filter(created date = last month), the whole table (including filters) disappears. The condition is that Account’s ID=param IdIs there a way for it no to disappear completely, so I can choose another filter without having to refresh the page completely?table has no rendering conditionI tried using the “Create default row if Model has none”, but that caused me issues, as i would not be able to use a different toggle, once that row is created.Any ideas would be appreciatedThank you,
Community Users Cannot Use Drag & Drop to upload files. However it works when they click the upload button. This is happening using Chrome, I know internet explorer is not supported. When an internal user accesses the same page they can use drag & drop. Any idea why this is happening? The box to drag the file in to never even appears for them. Thanks!
We currently have a visualforce page which displays a table of information. The information is based on a number of Maps generated in an Apex class which takes information from a number of different objects and carries out various calculations.I am looking to try and build a Skuid page which accesses this class and the data in it.This thread https://community.skuid.com/t/calling-apex-function talks about different ways to call apex functions, and using one of the methods here I have managed to call a webservice class which then calls the other class and can return data from it.However it is how skuid interprets this data that I am stuck on, is there a way to build a model that is not based of a standard salesforce object or is there some other way of using this data to create graphs etc. Or is there any other better alternative to access the data created by this class.
There is a bug that I believe should be handled at your end instead of developers like me, tweaking and finding a way out.🙂BUG is:-If a parent object is labelled with a name that contains any special characters like “&”, the popup that comes up inside skuid on the lookup filed does not show anything. For eg:- If my parent (lookup field) created on a child object is named as “A&B”, clicking on the lookup icon will show a blank popup.The XML that gets generated at the backend automatically shows an error!. So to avoid such an error, the developer will have to change its object label, which is believe is not a proper solution.Thanks and hoping to have this bug fixed in your next release.Regards,Vaibhav
I have a Ui-Only field that is a formula doing a model look up. It returns a Number. I’m trying to filter on the table to show only rows where that value is greater than x. I can’t seem to get the model to recognize any type of filter on this field. My condition on the model is “QtyOwned > __”I tried using a button to activate and set value of my condition to be 10 and then requery the model. No luck.Is it possible to filter numerically on Ui-Only fields? My guess is that since they’re client side and filters are server side that it isn’t possible. Any ideas?
Inspecting the element I see the following and want to add custom CSS to change the color of the link from #7ddaf0 to #000000. Having a real brain cramp here as I have tried a number of modifications and still get the same color. Any assistance would be appreciated..nx-page a,#skuidEditBtnContainer a, .ui-dialog a, .blockMsg a, .ui-multiselect-menu a, .nx-page .nx-editor a,#skuidEditBtnContainer .nx-editor a, .ui-dialog .nx-editor a, .blockMsg .nx-editor a, .ui-multiselect-menu .nx-editor a { color: #7dd1f0;text-decoration: ;}
In order to get names to show up in the Search component, you have to add Contact__r.Name to your fields but that also means the name shows up in the search “View” How can you hide the 2nd column for the name without showing the SFDC ID in the search results? If you drop the Contact__r.Name the search results (middle image) would show the ID.
Hi all, Currently I have a base64 code stored in a field along with html tags. For example, . That is the data that is in the field. When I try to place this field {{fieldname}} and allow html. It just comes out as text. I can’t call the image externally like this. because the text inside already contains the img src tag. Has anyone ever ran into this or does anyone have any idea how I could solve this? I’ve also tried with 3 mustaches instead of 2 and I assume I could possibly call a javascript snippet but I’m unsure if that would work or if that’s possible. Thanks, P.S. The base64 code inside works fine in an external source outside of skuid.
So, I’m building my own Recycle Bin. I’m using the “Custom” component to build a dynamic model and a table that adopts the rows of a bunch of other dynamic models. I’ll paste the code below. The table has a row action which updates the IsDeleted field to false (trying to ‘undelete’ the row). When that action runs, the field value is changed in the model from true to false, but nothing is added to the model’s ‘changes’ and hasChanged still equals false. What might be going wrong here? var element = arguments[0], $ = skuid.$, $xml = skuid.utils.makeXMLDoc; var modelObjects = ['Patient__c', 'Patient_Case__c', 'Interaction__c', 'Abortion__c', 'Related_Person__c', 'STD_Test__c', 'Attachment', 'Reoccurance__c', 'Signature__c']; var modelsXML = $.map(modelObjects, function(name){ return $xml('<model id="'+ name +'" limit="20" query="true" createrowifnonefound="false" adapter="" type="" sobject="'+ name +'" orderby="LastModifiedDate DESC" doclone="" queryallrows="true"/>').ap
Can we show records based on role in skuid? suppose a record created by a user will be shown when manager logs in. But record created by manager won’t be shown when user logs in
I was editing pages in Skuid, then suddenly I was booted to the login screen. When I logged in again, it says that “UI is not available”. Then I clicked on the skuid app from the app menu and it is telling me that Skuid Central does not exist.
Is it possible to reorder a model or a table based on a field with javascript?After adopting a bunch of rows into a model, I want to order by a date field.
I’d like to find a way to make a few fields read only based on a users role. I’ve created a model that contains this information via the User object but I’m unsure how to access this information through javascript.
I’m not at versed in Javascript but can usually hack my way around…however, I’m having an issue with a HighlightRow snipped based on an opportunity expiration date. I’ve successfully created a row highlight snipped based on a specific value in the past (using (field.mode == ‘readonly’ && value === “P”) but I don’t know how to write an argument that would change use a date. Here is my HighlightRow snippet that changes a row color when a cell value contains “P”: var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); if (field.mode == 'readonly' &amp;&amp; value === "P") { field.item.element.addClass("LeadTab_highlighted-row"); } <br> How can I write a snippet that applies a Class when a date in a cell is less than today’s date?Thanks!Gary
Hi! The home page for our application has few tables and an in-line page to display dashboards.The page is getting loaded but the dashboards aren’t. And I’m getting the below errors in console. Below is the visual force page that we are using. Can anyone suggest a way to make the dashboards work. Thanks in advance!
I have added a field that shows qty of an inventory item however it is showing inventory with qty of zero, How can i get it to show only Items with a positive count?Many Thanks,Daniel
I have got 2 models Application and Contact , where Contact is a lookup to application.On Application field editor having 2 fields 1 - New Borrower 2. Contact Reference If a user selected any contact from lookup or user selects new borrower then a new Contact field editor will be displayed. We need it like if a Existing contact is selected form Lookup on Application Field Editor’s Contact reference, the related contact information should get filled up in below contact field editor. We have created a condition on Contact saying Id=Application.Contact’s Id. But this is still showing empty pane. Is there any approach to re-render this Contact panel and show data of the selected contact’s details on lookup.
I have a very simple filter condition on my opportunity model and it is being completely ignored. It seems this filter is not being applied at all. When I preview my page, all records are returned regardless of Record Type.
Hello, I’ve done the same exact logic on another page and it worked flawlesslyNow I’m trying to reproduce the exact same for a different page (based on same SF object, and fields…) the only difference I can see is that it’s in a popup…And it’s not working (the lookup field always show “none”) and for the life of me cannot figure it outWill try to explain it as clear as possible.page named Account_Bk_wizard (based on SF object Account)1- In this page, I have a table based on model Bank_statementsW2- This table has a row action to show me in a pop up the related child record from model named “Suspicious Deposits” (up to that point all works well)Here framework Actions I use:3 In that popup , i have a table with a field to Lookup a SF Object named “Advance/loan on bnks”. This field always shows none…Here’s the Lookup filter i usedIf i take same record on other page where i got it to work, i see results…The only thing i can see being maybe the issue, is the Bank statement ID , does not get
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.