Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
How can I apply some CSS to make tables shrink down a bit? For instance, maybe reduce the font size or the spacing between the row text and the border, or order to fit more rows on the screen without scrolling down. I’ve tried various versions of the CSS below, but it doesn’t seem to do anything.nx-skootable th td { padding: 2px; }
I am trying to call an apex function using “Run Custom Apex Action” , i am successfully calling the function but not able to pass parameters to the function. I have a model called application i have to pass the application models id , need some approaches to send id as an attribute. when i am trying to pass parameters as {{Application.id}} getting null in apex function.
When applying FORMAT_DATE function to a DATE field, the resulting output is adjusting the DATE based on the timezone. Note - This might be related to https://community.skuid.com/t/datetime-field-not-converting-correctly-based-on-user-ti… Steps to Reproduce: Add field “Test_Date__c” to Account object as a DATE field Set SFDC timezone setting to make sure you are on a prior day from 00:00 GMT Create page using XML below Preview page Expected Behavior Test_Date__c == Formatted Date Actual Behavior Test_Date__c is correct Formatted Date has adjusted for timezone (mine is PDT) Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="true" createrowifnonefound="false" sobject="Account" adapter="" type=""> <fields> <field id="Name"/> <field id="CreatedDate"/> <field id=
I want to verify certain properties of a model are filled out right before allowing a user to click a Submit button.My plan is to disable the button and enable it based on the result of a JavaScript snippet that is being run.There may be an easier way to do this but what i am trying is to create a UI.Only checkbox field in the model. Then set that field via the JavaScript snippet if the entries validate via my custom code.If so then there would be an enable condition on the button which would then allow the user to click the submit button.Here is what I have tried.var model = skuid.model.getModel(theModel),row = model.getFirstRow();console.log(row.applicationComplete);row.applicationComplete=true;console.log(row.applicationComplete);The first log comes through as undefined. The second shows as true. So the row seems to be updating in memory but the field is not showing the check in the checkbox on the page and my button which has a condition looking for applicationComplete to be true d
When we are created Row action in table then we want to use rendering filter that will check value of row field value.I used as : {{{row.Indicator__r.Benchmark_Value__c}}}But it’s not working.Can any one let me know how can we can use filter criteria that will check field value?Thanks,Rajendra
I am using a search component in a new area of my customer community, but I’ve got some issues that I need to resolve before I can release it. My customer profile has access to all the records in this case (a Quotes custom object) but I want to restrict the quotes they can see using a field called Agent_Shared__c = TRUE and not display to them the FALSE ones. For testing, I build a model and placed a table on my page with the same condition (Agent_Shared__c = TRUE.) Logged in as a community users, I correctly see 3 records. My search component is setup to query this one Quotes object, and return the Name of the quote, ID and related Account.Name. I get the ID so that my select action just redirects to the /{{Id}} page. To accomplish the condition on the Search for Agent_Shared__c = TRUE, I added it to the xml, like this: _ _ _ _ _ _ _ _ _ _ _ _ _
The rich text editor defaults to double spaced lines and I don’t see a way to set it to single spacing. Am I missing something?
I have created a JavaScript that will loop through and add up the values of two different fields if the month and sales team match the data in the model. I am not sure how I get the data to display in Skuid on separate lines. Right now it just breaks my page. I know there is a problem within the first 3 lines of code, but not sure how to fix that. Also how would I know if this should be in-line or in0line snippet?Use Case:For all 12 months there will be a separate salesrev value and salesprofit value.Month Sales Rev Sales ProfitJanuary 100,00 270,000February 150,00 280,000March 120,00 240,000April 110,00 260,000…Code: (function(skuid) { var $ = skuid.$; //$(document.body).one('pageload',function(){ //Setting Model var invoicelineyear = skuid.model.getModel('InvoiceLine_Full_Year_View'); //List of Months var monthsList = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'N
Hi everyone, I have a problem concerning the interaction between my master page header and table headers in my child pages.When I select "Keep Header Visible" on my tables, upon scrolling down, the table header proceeds to the top of the page, underneath my master page header (I can see the bottom of it poking out!). I thought my child page was limited to existing within the page region I specify in the master page? Upon page load certainly nothing creeps underneath the master page header.Any thoughts on how I can tackle this? I want to keep the master page header and be able to see my table header at the same time.
I am using Search Component in my page to search articles from Knowledge Article object. When I have provided some value into search bar, I am getting error as response [{“statusCode”:200,“type”:“rpc”,“tid”:2,“ref”:false,“action”:“skuid.RemotingStubs”,“method”:“doSearch”,“result”:“{”“sosl”“:”“FIND ‘vi*’ IN All Fields RETURNING To__kav(ArticleNumber,PublishStatus LIMIT 11)”“,”“results”“:null,”“error”“:”“Implementation restriction: When querying or searching the To__kav object, you must filter using the following syntax: Id = [single ID], Id IN [list of ID’s] or PublishStatus = [status]. In addition PublishStatus is only permitted in a top-level AND condition.”“}”}] As Search component is using SOSL, we can not provide any filter for PublicStatus and Language for this object. The same is working with Table component as I am using Model for Please find screenshot
On the mobile builder I have an object for Orders and a button that creates a new Order and all of the detail required.I then have a product grid view and a button within this that adds a new “Order Item” record, allows entry of quantity etc and inserts the Product Id as a default fieldInserting the Product Id as a default field value is ok as the button sits within the context of the Product model but I also need to add the Order Id to the Order Item record to ensure that the Order Item is attached to the Order as a child but for the life of me I cant find how to find the Order Id given the button isnt within the Order model context.I have tried every combination of {{Orders__r.Id}} I can think of and I am not familiar with writing snippets to achieve this?Is there a simple way as it sounds simple to me )
Is there a way to obtain the raw error info that was returned as part of a model operation such as save?Currently, if you run a snippet On Error of a model save (or subscribe to models.saved) you can access arguments[0].messages to see the error messages that were collected. The challenge here is that you only get the error message, not the row id, field name, model, etc. While my actual situation is more complex, here is a simple use case - When an error occurs saving records highlight the row(s) in error in red. This comes in to play when the fields in error are in a drawer - most notably when the drawer is collapsed.I can come up with some crazy solutions to obtain this information but it would require quite the hack job to pull off. When errors are iterated underneath, the “message” portion is stored in ‘z.messages’ and then ‘z’ passed to the ‘models.saved’ event via publish and also to the deferred resolve. As a quick solution, z could be modified to include ‘o’ which contain
I have set the css It does not expand any bigger than 400px I have left the division properties like this: Shouldn’t it expand up to 1000px. It stays at 400 px. Why
Hi,I have a REST Model, which gets data from a REST resource APEX class, which send a wrapper list in return.When I run the page as System Admin login, it loads data fine.But for some testing user, it doesn’t show any data on page load, also on console the model data is empty for that user, when changed the filters, got an error saying “Filter Could not be applied”Any ideas/suggestions on how to troubleshoot this one ?
Can you not group an aggregate model on a text formula field? It doesn’t come up as an option.
I’m working on a proof of concept for our company to start using Knowledge Articles. Ideally, I would like to show articles on a page’s tab and filter the results relative to the parent record.I’m trying to create a Knowledge article model and pass in conditions that are based on data categories. However, I’m not sure how to add the “WITH DATA CATEGORY” clause to the model’s conditions.Take for example this data category hierarchy for regions: Regions__c<br>&nbsp;Europe__c<br>&nbsp; England__c<br>&nbsp; France__c<br>&nbsp; Italy__c<br>&nbsp;NorthAmerica__c<br>&nbsp; USA__c<br>&nbsp; Mexico__c<br>&nbsp; Canada__c Say, I have an article type called “Visa Information”, but I only want to show articles for relevant to countries in Europe. I can accomplish this in SOQL: SELECT Title, IdFROM VisaInformation__kav<br>WHERE PublishStatus = 'Online'<br>AND KnowledgeArticleId in (SELECT Id FROM VisaInform
I have a very basic requirement. Take inputs from the user (as of now trying to take only one input) and insert the value in a custom object. Following is the JS code:-var applicationModel = skuid.model.getModel(‘Application’);var applicationRow = applicationModel.data[0];var result = sforce.apex.execute(‘ApplicationMasterController’,‘checkPassedValueFromPage’,{appFromSkuid: applicationRow});The ApplicationMasterController just has 2 lines of code viz.webservice static String checkPassedValueFromPage(customObject appFromSkuid) { return ‘tested the flow from Skuid Page’; }the method does return the string but on the browser console there is an error which states “No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘https://c.cs6.visual.force.com’ is therefore not allowed access.”I have even tried whitelisting the link. but does not help.Any pointeres for this issue and Is there any other way to achieve this requirement other than what I have t
I am using File Upload component to attach files to records. It works fine in any other browser(Mozilla and Chrome) if I attach a file more than 1 MB but does not work in IE 11. Has anybody faced this issue?
I’m working on a javasnippet that updates values on one model based on values from another model in a table using a loop. I believe it should work, but in order to make it work with the right data I need to query the model within the loop. However, I can’t get the updateData() function to work in this snippet. I get an error in the console “Uncaught Model ‘model’ has unsaved changes.” What am I doing wrong? I tried putting a model.save() in front of it, but that didn’t fix the problem. (And also wouldn’t that cause issues with SF?) Any help is much appreciated. Thank you var params = arguments[0]; var step = params.step; var $ = skuid.$; var models = skuid.model.map(); var OppLineItems = models.OppLineItems; var NewSalesOrderItems = models.NewSalesOrderItems; var ShippingLocation = models.ShippingLocation; var rowsToUpdate ={}; var ShipToValue = {}; $.each(NewSalesOrderItems.data, function(){ var ShipToValue = NewSalesOrderItems.getFieldValue(this, ‘Ship_To__c’); var locationCondition
I have one model that I am trying to only show the records where field A doesn’t equal field B (on the same record). Both fields are lookups to the user object. Is there a way to do this with conditions? I’m not sure if I’m having a brain fart or if this just isn’t possible.
I have a rich text component and used "Insert Field to merge Phone number associated with {{Connected_Member_DNA__r.Organization__r.Name}}I have selected the field in the model and checked “Do not run template on each row”, then the merge does not happen. If I uncheck the “Do not run template on each row”, then it does merge but shows multiple times.
I have created a popup that has an include page that is responsive. I have set the popup width at 99%. I have tried to put the Page Include inside a responsive component and no responsive component. I have tried to leave the popup width blank with and without a responsive component. The included page does not behave responsivly. It puts a slider at the bottom of the popup. What are the step to have the included page be responsive.
First of all, this is my first question on the Skuid Community (after lurking around finding answers to my other questions for the past several weeks) and I want to thank everyone on here for their valuable responses and ideas! I am working with Salesforce Content and am wondering how to integrate a Skuid page for Content Deliveries in to Salesforce. I don’t see any VisualForce pages to override for Content and I am wondering if there is another way to do this? Content/Files are a big part of the customizations I am doing at the moment and if anyone has more resources on how to integrate Skuid with these components I would be extremely grateful!
i need to specify a record type design for each record type. I can’t seem to do it just using the builder. Already have an initial solution for this, by URL redirect to a visual force page(the VF page handles the logic for record type assignment depending on the record type name), but when the page is transferred from sandbox to prod, we will need to change the domain of each URL redirect which is pretty heavy. So i thought of using JS, to handle the logic of redirecting a page to another page. i already manage to get the record type name and Id of the record i clicked. i can’t seem to find out on how will i be able to jump from a page to another page.
Hello All!So I modified my xml - added a few additional pages from another skuid page. And I think I might have done something wrong. In the model section, I’m 2 blank lines - models with no names. When I click on them I cant edit or remove them. I just have 2 blank models that I cant remove or click or have any interaction with.
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.