Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
We’re pretty new to Skuid and developing some functionality for a pilot. We’ve hit a problem where when accessing Salesforce with an iPad using the browser, if you open up a Skuid page, it brings you to Salesforce1. Is there a way to prevent this from happening as we haven’t rolled out Salesforce1 to our users yet.
I am new to Skuid and I am creating my first page to replace our opportunity page that has gotten way to long. I want to use tabs and I have that working but in one of the tabs I want to insert the dropbox VF object. I do not know where to start.
I’ve noticed that the standard field renderer for picklist values does not take record types into consideration for New, Unsaved Rows. The two images below best describe my problem, and I was wondering how I could make sure that the drop-down for “Description” is correct when a new Row is created? A new, unsaved Row shows All Picklist ValuesAfter the Row is saved and edited, only then is the correct list shown.The Conditions on the Table’s Model specify that the Row must be of the ‘MISC’ type. But it seems that the picklist values are correct only once the Row has been saved, and consequently edited again.
What is Salesforce Lightning and how will Skuid integrate within it?
I have a custom object 'Property' and I added the chatter feed component to the page. Once I add the chatter feed I get a javascript error and the page will not load. I was able to successfully add this to other pages (Opportunity,Contacts and Airport) and they work fine. Here is the error from chrome.Uncaught ReferenceError: chatter is not defined runtime.js:3a.componentType.register.render runtime.js:3b.render skuid__SkuidJS:5(anonymous function) skuid__SkuidJS:5f.conditionallyRender skuid__SkuidJS:7b.conditionallyRender skuid__SkuidJS:5f skuid__SkuidJS:5(anonymous function) skuid__SkuidJS:5m.extend.each jquery.min.js:2g skuid__SkuidJS:5g runtime.js:4h runtime.js:4f.conditionallyRender skuid__SkuidJS:7(anonymous function) runtime.js:5m.extend.each jquery.min.js:2m.fn.m.each jquery.min.js:2a.componentType.register.render runtime.js:5b.render skuid__SkuidJS:5(anonymous function) skuid__SkuidJS:5f.conditionallyRender skuid__SkuidJS:7b.conditionallyRender skuid__SkuidJS:5f skuid__SkuidJ
I am trying to validate the database records based on Start and End date of newly created record to check the overlapping of dates and to show the message if its is overlapping and further it has to allow to save the record on confirmation. I was able to do this check for database records, but how can i check this within newly created rows whether the dates are been overlapping or not. Here is my code: var $ = skuid.$, params = arguments[0], list = params.list, item = params.item, model = params.model; //var $ = skuid.$; var save1 = false; $(function(){ salescallM = skuid.model.getModel('SalesCallModel'); var rowIdsThatChanged = Object.keys(skuid.model.getModel(‘SalesCallModel’).changes); var currentscRow = salescallM.getFir
I am overriding the skuid standard save button. So how can I find the row selected for deletion in a table. Is there a way to find the mode of the deleted rows? Once I find this, i believe skuid.model.getModel(‘SalesCallModel’).save(); will take care of delete too, correct?
would you like to fix it?like:http://info.skuidify.com/demohttp://www.skuidify.com/faqand something missing at the botton of this pagehttp://help.skuidify.com/m/11720
I iframe’d a google maps page in a custom detail view of a record but it shows nothing. It is completely blank. I hard coded the address without merging any record fields and it still shows up blank. https://www.google.com/maps?q=4555+E+Inverness+Ave+Mesa+AZ+85206"; width="100%" height="800px"/> I do not want to use a custom component as this does not work in Salesforce1 ios app. Any ideas?
Hello! I’m new to Skuid and couldn’t find a post that explains what I’m trying to do. I have a table that is a basic model type (Equipment). I want to be able to display in that table a column that aggregates some of that object’s child records (Reservations) given certain conditions. I understand there are aggregate models, but I want to show a list of all of our Equipment whether or not it has a child reservation. I think I’m close. I am able to have a template field show the current reservation quantities of each piece of equipment…but it doesn’t aggregate them. Picture below. Any advice? Am I going about this the right way? Is there an obvious way to include an aggregate model in this table? Thank you!
We have a View/Edit Action for our Account object and a related child object using the following Model Condition: http://cl.ly/image/001b150m3F33. When a user attempts to create a new inline record on the child object, the record saves…but without any link to the parent Account. Any suggestions? Thanks.
I am trying to deploy some code and am having a hard deploying some of the pages:Question:1. pages/Skuid_PatientNew.page – Error: The specified Package Version number does not exist for that Package: skuid, 5.21Deploying using Ant & Force.com IDE.However, I am deploying from an org that only has upto skuid v5.21 whereas the org I am deploying to has version 5.8.My problem is that I don’t seem to figure out how to upgrade an org from 5.21 to 5.8.Can anybody help me with that please?Thank you
I have two objects I’m working with.The first is a custom task object I’m using that can reference other tasks as parents. Tasks are assigned a “Tab” value of 0-9 for which level they belong to in the Gantt Chart tool I’m using. Tab 0 = Jobs, Tab 1 = Phases, Tab 2+ = Phase or Task.The second is a custom equipment object with a junction table to the tasks table. So many pieces of equipment can be assigned to many tasks.When working with a task I would like to be able to list records in the equipment object based on whether or not it has been assigned to one of the parent job/phases the task is a descendant of.Tasks can be at level 2 through to 9 and I’ve created a Popup w/ a page include for the Task Detail in order to easily replicate it across each level.Now, how can I have a model that can look throughout each level of relationship possible a task can have. For example, a simple task can be the child of phase “Rip and Replace” which is child job “Replace Shingles”. But a task can als
I am able to use CSS to adjust the text formatting in the wizard step headers, but I am unable to adjust the font size. Is this locked or can it be adjusted? I’ve tried a bunch of different syntax..nx-editor-header-title { color: Navy; font: bold 18px/18px Consolas, Arial;}
So I have a popup on the calendar view and I want to pass parameters from inside a tab to a page include component.I’m passing the following parameter from the popup with the page include:•AccountID={{$Model.Appointment.data.0.Case__r.Account__r.Id}}Everything works, except that it displays data for row 0. How do I specify the row of the popup?
I’m fairly the answer is yes, but do Apex Triggers work as per usual when making changes to record through Skuid pages?
I’ve got a page that requires an Id for several models. How do I pass these values into the page include? I thought I was to use the Query String in the Page include in order to retrieve it as Param.Query String: TPPId={{$Model.CurrentTask.data.0.Id}}Popup Model Page/Url Parameter Value={{$Param.TPPId}}Did I miss something?
New error trying to display/preview a page. This was not happening when I was working on it last Friday.
Using the Step Wizard:I have a list of Lenders in Step 1, with a checkbox need to each of them.Depending on which Lender is checked, how can I pass the Id (of the Lender) to Step 2 which contains Plans, as I wish to filter Step 2 the Lender selected in Step 1.I’m not sure how to pass the Id of the selected Lender in Step 1 to Step 2, then filter the table.
I am using accounts Records for List view Action in My page. Using Skuid List view , Is it possible to display child contact records in each account record?check my attachment for Accounts List view. At each end of the column, Is it possible to add all child contacts for each account records? Is it possible?
Is it possible to insert a step into a wizard as the first step? I want to create a new first step, but can’t get it to be the first to show…
Has anyone integrate this capability using the mobile device’s capability to populate fields. We are looking to track materials by scanning their bar and QR codes to find the product in the database.
It would be helpful for formatting purposes…
Is it possible to open a popup using HTML, JS or CSS? I’d like to have an icon in my table open a popup when clicked, but I don’t want it as a row action… Any thoughts?
I’ve a junction table I’m trying to add rows too. I can add a row to it. I can add the data for one of the two master-detail fields using {{$Model…}. Trying to add data from the current into the other master-fields using {{Id}} for the other master-detail field. Fails using this merge and it’s driving me crazy! It enters an incrementing number each time I try it! See youtube video.http://youtu.be/PXgjh3RpOqg
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.