Upcoming Event - 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 have a DateTime field in a table, which also has an action running on it. When a new row is created in the model, the DateTime field prepopulates with Today’s date and time. Depending on what time this row is created, the minutes picklist will populate with either 1 min increments (00-59) or 5 min increments (00-55). I’ve attached 2 screenshots to explain better. New row created at 9.25 (Minutes picklist in 5min increments) New row created at 9.26 (Minutes picklist in 1 min increments) This isn’t so much a problem, more of an observation, as the row actions here are fantastic. But would there be a way to limit the picklist to 5min increments?
All of our Skuid pages are housed within full-screen Visualforce pages. We’ve been experimenting with cache=“true” and expires=x (where x is the time until the page expires) in the Visualforce pages so as to cache repetitive information, like the nav bar, logo, page structure, etc. Some of our Skuid pages are quite meaty, so this can have a dramatically positive effect, for example reducing the load time for one commonly used page from 5sec to 1sec for every repeat load. But it’s raised some questions:We have a client page with a tabset, and one of the tabs is for Services, which displays a table. I have the VF cache expiry set to 10mins. If I edit one of the services, navigate to another page, then return to the client page (which is clearly being served from cache) and that same service, it displays the old value. If I hard refresh the page (shift-refresh), I get the fresh client page and the new service value. This seems odd, because the Service tab is set to lazy load, and in fact
I have a custom component that I’m using on a few of our pages, and just realized that I don’t have the option to render the component like a ‘native’ component does. Is there something I can add to my component’s javascript to make this an option? We now have a need to conditionally render it based on a field in one of the models, so having this option would be great. If there’s no way to add it to custom components, is there a recommended workaround?
I have an account detail page thanks to skuid CRM but we have a custom object called job. We want to be able to add a job to the opportunity and account. When clicked this should open a pop-up that will pre-populate the account and opportunity. The user will then add the dates and description, save and close. The job should now be associated with both the opportunity and the account. I can’t seem to figure out how to make this happen.
My Javascript is very “beginner” at this point. Could someone tell me the syntax for a snippet that would add a row to a table (Model B), capture data from a field editor field (Model A), and update the new row with said data? It will actually be multiple fields, but I think I can adjust the code if someone can give me a head start… thanks so much for any help on this!
I am trying to add a new task to a custom object using inline editing on a table. I have a custom object called ‘Airport’. on the skuid Airport page there is a tab that contains a table with tasks as the model. I am using the default green ‘+’ to add a new record. It creates the task, but does not relate it to the Airport. In the standard salesforce page, when I create a task from the airport it automatically sets the “Related To” to the correct airport. How do I get Skuid to set the ‘related to’ to the current Airport?ThanksAndy
Is there a way to “hide” columns in a table so that the data would be invisible to the user, but would still appear in an exported Excel file? I’ve tried setting the column width to zero, but that doesn’t seem to have an affect…
The user needs to be able to view a PDF file attachment. Is there any way to do this in a popup or a link?
I have a page that allows a user to add a task. There are 2 record types. Master and a custom one. I do not know why they have it set up this way, but 90+% use the Master record type as the default. If the master record type is the default, I get the following error when I save“Task Record Type ID: this ID value isn’t valid for the user: 012000000000000AAA”If I set the default record type to the custom record type it is fine. Does skuid not support ‘Master’ as a default record type?ThanksAndy
one more question would you know how to close the popup from the javascript snippet? Note: This topic was created from a reply on the loop through rows in a model topic.
i’d like the user to be able to view a popup with additional information on the field. is this possible?
Using something similar to the code below how can I write a javascript snippet to loop through all the data in a Model displayed in a table.Basically I have 3 columns and one of the columns contains checkboxes.The user can check any of the checkboxes for each row.Once they click on the button, it calls the snippet, which should then loop through and get the Id’s of the rows that have been checked.(NB when looping through to check each row, to see what has been checked if the data has not been saved yet, can we still get the Id’s of the checkboxes that have been checked?)var params = arguments[0], $ = skuid.$;var OutstandingItemModel = skuid.model.getModel(‘OutstandingItem’);var allOutstandingItemData = ;allOutstandingItemData = OutstandingItemModel.data;var i = 0;for(i=0;i<allOutstandingItemData.length;i++){var itemRow = itemData[i];}
We have a job detail page built which has a table listing the users associated with the job thru a junction object job_users. In the list of users we want to add a row action which will clock the user in and one for out. To “clock in” the row action sequence need to add a new log entry to the log entry with the following fields:type = timecreated by = logged in user (log entry object)user = the user listed in the row (log entry object)time in = current date/time (log entry object)job = the job you are on the detail page of (log entry object)user status = true (for clock in) (user object)save and update the rowfor clock outfind the last log entry for the current job that had a clock in time and a blank clock out time for that user and jobupdate that log entry setting the time out field to the current time.set user status to falsesave and update the row.Can you help me thru this? How do I get the data from the current row and job to feed these fields?
what i need is a way to say, when the page loads, fire the event for the first tab that would be fired if the user clicked on iti have the code for responding when a tab is clicked on… but when the page first loads it does not run
I having a table wit 2 fields(field1 and field2) with a row action in a table which performs search functionality. In row action i kept redirect url and passed names(which i selected in 2 fields) of both fields into url. In redirect url i specified conditions and added Grouping Logic. If 1 field is entered it is working fine in case when i click on row action. But if i enter both fields and click on row action then i am not getting actual records with same field values in redirected page. I had written 2 conditions in redirected page and grouping logic ((1 or 2)or (2 or 1)). How can i achieve this in row action.
We have a requirement to render a reference field as a picklist on ‘edit’ mode and remove hyperlink on ‘read’/ ‘readonly’ mode. We used following snippet to achieve this. skuid.snippet.registerSnippet(‘removeHyperlink’, function () { var field = arguments[0], value = arguments[1], $ = skuid.$; //If we are in edit mode render the reference field as pick list if(field.mode === ‘edit’) { // temporarily set to REFPICK so we get the stock reference picklist functionality field.options.type = ‘REFPICK’; // render away skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value); } // If we’re in read mode, then remove hyperlink if (field.mode !== ‘edit’) { skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value); var linkTag = $(‘a’, field.element); if(linkTag.length){ var output = $(‘’); output.append(linkTag.html()); } linkTag.replaceWith(output); } }); The snippet above worked fine if you edit a record (inline edit) and save it. However, the hyperli
Need to do approval process in skuid. I am able to send email on approval process but if record is send for approval i am unable to lock the record. How can i lock the record if record is send for approval process. How can i build locked screen same as salesforce standard functionality in skuid. Thanks in advance.
I have some remoting calls that tend to take a bit of time to complete. I would like to display the same blocking ui message that is used by actions. How would I do that using javascript?Just for some background I have to do some additional processing after the response that I need to perform which could result in additional remoting calls so I can’t simply just use a button and action to make the call. I need control over when to start showing the message and when to hide it.
Is there a way to trigger a required field check without invoking a model save/cancel?Here’s the use case - Custom button with action sequence that contains a “validate” snippet that performs checks on data on the models to be saved. If validation occurs, a save models is performed. The save models, prior to save, runs through the required field checks and only saves if all required fields contain a value. What I’d like to be able to do is perform the required field check first, then the custom validate snippet and then the save. This ensures that all fields have a value when the custom validate snippet runs. Without this, the validate snippet needs to account for fields that don’t have values but are marked as required.Thank you!
I have a File Component that displays an image from a custom field (Lookup). The image loads fine, but when the user changes the lookup field, the image does not update. I have tried adding the following code as an in-line snippet, but it isn’t working. Any suggestions?skuid.component.getById(‘imgColorRef’).Render();also tried:skuid.component.getById(‘imgColorRef’).conditionallyRender();
I have a popup form for a “contact availability” record. The contact has a custom field “is teacher”. I want to show a “room” field on the popup only if the contact is a teacher. This works find on records that have already been saved. I can set the visiblity condition to only show the room field with the related contact has the “is teacher” field checked.But on a new record, the related contact’s “is teacher” field shows up as unchecked… so the visiblity condition hides the room instead of showing itI assume that the true state of the related contact’s is teacher field is only available after the record has been saved.So as a way around this… is there any way to decide in javascript which of 2 custom popups to open ?
Would it be possible to apply CSS to a single Table Filter, leaving the others with default settings? I couldn’t find anywhere to apply a UniqueID to a single filter. In the attached image, I have a filter on the left which turns all the other conditions off. It would be good to make this one stand out from the rest to draw the User’s attention to it.
I have a page that has lots of references in page titles and templates to “Teacher”. I need another page that is identical, but with all the “Teacher” references changed to “Contact”. I tried setting up a top level javascript variable and then referring to it with {{}} in the title… but it does not render. Is there a way I can do this?
Or do we have to do it manually for 60 users?
I have a calender and a few events. The events show up fine when I don’t have lanes. But if i add lanes they don’t show up. So I think I may be missing some sort of a relationship. 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.