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 multiple tabs with one table each, in which I want to basically display several filtered versions of the same model (because any data changes need to be shown across tabs). Can I create default conditions/filters to apply to only one table at a time? I think the selection of the tab would turn on and off certain conditions in the model.
How to Extend Jquery with Plugin while working with SKUID? I am messing with Twitter typeahead.js and the Functions are not showing up in the standard $ scope. Stumbled upon $j which is responding a lot nicer. Thoughts?
On the side bar there is a “New” area to create new records. I have noticed that if I override a “New” link on an object with a Skuid page the side bar “New” *Whatever Object I override" quits working. I.E. the page works great if I create a custom skuid button on a page. However the sidebar’s New Object link keeps giving me the error that “I have been Inked”. Is there anyway to get the sidebar’s “New” links to play nicely with Skuid new pages?
Is there an easy way to upload images/photos from camera/file and compress them before uploading. New phones create big images that will quickly use up available space and require long transfer time. The JIC project GitHub - brunobar79/J-I-C: J I C is a Javascript Image Compressor using HTML5 Canvas & File API that allows you to compress your jpeg & png images before uploading to the server (100% client-side and no extra libraries required!) seems to adress this, demo http://makeitsolutions.com/labs/jic/. Is it possible to combine with the file upload component in SKUID in an easy way. Either by specifying fixed value for ratio or by adjusting that as a property on the component.
I’d like to be able to make a field rendering conditional based on a secondary model on the page (not the one that the field is associated with). In my case, it is to make a field optional based on the User object (based on the logged in user), but on a Case field editor (which is a new empty case). Currently the field rendering feature does not allow this capability - something to think about for a future release…? I can use a snippet to examine the secondary model, and go into the DOM and hide the fields (or even easier, hide the entire Field Editor). But of course the field validation still runs - causing the page to be impossible to save. The best answer I’ve found … though I’m a bit worried about my approach … is also use a snippet to locate the model, traverse into registeredLists and locate my Field Editor, and within that locate my fields within the requiredItems object and delete them. Which does seem to work, though I’m diving pretty deep into your data structures. Is this a
I need to adjust the DOM via jQuery during a page load. With normal page loads, I can easily do this using an Inline javascript with code such as: (function(skuid){ var $ = skuid.$; $(function(){ $(‘#StatusPicklistFrame’).hide(); }); })(skuid); However, when the page is loaded via a Page Include - this script triggers before the DOM has been fully populated with the dynamically loaded content. The script does run as the page is loading (meaning, it waits until the Page Include begins) - but runs before I can find the objects in the DOM. In my case I’m trying to hide a Field Editor frame, which does not have any customer field renderer attached to it. I did try hooking to a field renderer on a field within the Field Editor, but I don’t appear to have access to the parent objects in the DOM. Is there a different way for me to receive a Page Include complete event so I can adjust the DOM prior to the content being visible to the user? Thanks, - Chris
Also, any clues on showing a Count of rows in a model? Note: This topic was created from a reply on the Field in Tab Name topic.
Why is Visualforce missing as an option under the Page Include component on one of my Skuid pages?
I have a lookup field (Project__c) on an Account which links to another Account. Once this lookup is entered into Step 1 of a wizard I’d like this to automatically populate an Opportunity field (Project__c) with the same value (and which links to the same record) - can Skuid accomplish this? I’m currently doing it in a visualforce page using javascript on a button click. It’s pretty ghastly.
How can a map lat/long picker like this example jQuery + google maps + Elevation - JSFiddle - Code Playground be included in a SKUID page and feed back the lat/long to fields in a model. I guess this could be done with a snippet but haven’t succeeded in getting it right.
I am following this tutorial Page Not Found — Skuid v15.1.6 Documentation and I am curious if it is possible to simply have an additional Field Editor Section to add only One child object. The tutorial shows how to connect the child Contact model to a table. I tried the same using another field editor, but the fields are not rendering in the preview. Thanks for all the help! Jacob
I must be confusing these two. I can’t seem to get panel width to set to a percentage. I would like two panels, each 50% width. Right now, it is treating the value as pixels. I tried to use Column Width within the Field Editor as an example, no luck. Am I missing something?
On the account object I have a picklist field called Account Manager. I would like to use the value of that field to pre-populate another picklist field (Manager) on a new opportunity. After clicking new opportunity, the user would have the option of changing the Manager picklist value for the new opportunity or leaving the pre-populated value. Is this something Skuid can do? Thanks you.
I have a visual force page that is overriding the edit and view actions on the Task object (as described here). This works great until we encounter a task that has been archived. When you try to edit or view the task you get an error saying: Data Not Available The data you were trying to access could not be found. It may be due to another user deleting the data or a system error. If I open up the log, its easy to see that the error is happening because the query to get the record type, doesn’t include the ALL ROWS clause. select RecordTypeId, RecordType.DeveloperName from Task where Id = 'MYID' limit 1 Return no record select RecordTypeId, RecordType.DeveloperName from Task where Id = 'MYID' ALL ROWS Return record
Would a custom snippet be able to automatically render a number field with increasing value? I have a table which outlines a travel itinerary, with sectors 1 through X. (say maximum 20 sectors) Currently the user has to manually ‘number’ each sector so that they stay in order. I tried ordering by Salesforce ID / Record ID, but the table rows are not saved in top-down order, they are being saved bottom up order by SF. (ie the user would have to enter the itinerary bottom-up for it to make sense after it is saved).
I am using a popup with a model set to “Create Default Row if Model Has None” (and disable “Load Model Data on Page Load”). This allows me to create a new row on an object in the popup. In this case, it is creating a Case Comment off a Case model. However, if I click that popup again, I see the same data from the last time I clicked it, even though I’ve used a snippet to save the data (updateData) and refreshed the main page. I’d like the next popup to be empty, waiting for a fresh new comment rather than seeing/editing the prior comment. If I call model.createRow, I do get a fresh new row … but I also see the prior row in the popup (and I’ve set the model “Max # of Records (Limit)” to 1, though I know that’s only used to load new data). Is there any way I can take my model and “reset” it back to the original, new state from within a snippet? Or remove the row from the model without deleting the row from the object? Thanks, - Chris
i have a table with a list of products i added a row action that opens a popup form the form shows that the correct row of the model for products is selected on that form I have a table that has product_material as a model that model is filtered by by the current row in the product model when the popup form opens it displays no records for materials for the current product if i click on the plus i get a record which has the product id of the current product in its “service” dropdown however, if i enter a product in the “materials” dropdown the “service” id disappears nevertheless if i save the record it makes the correct entry in the product materials table, with one product entered as the service and the other entered as the “material” what i don’t understand is why the entries don’t show on the popup form if i then open it again… the table on the popup form is filtered by a “field in another model” that that model is the products model that is underlying the table with the list of
I’m trying to use parameter subtitution on a repeating field editor in the section title, but it doesn’t appear to be working. If I do my subtitution inside the section body, it works fine. This using a repeating section - in this case, across Case Comments. I’m trying to show the case creator name and the case ID in the section title, and the case comments in the body section. Here is what I’m doing in the editor: And here is the result: Is there a trick to get the section title to do the parameter substitution on the repeated object? Thanks, - Chris
“Salesforce is not responding due to a long running script” Are there are any scripts that run for skuid that could be hung up in the background. We use all skuid pages and this error has been appearing for the past week. So far users have reported this issue when choosing the “Home” tab.
On my page, when I uncheck “show header” and leave “show Sidebar” checked I get this (see below). Basically I want the sidebar but not the header.
Hello, I need to show one tab only to a set of User.Can you please tell me how can we render our tab in Skuid Page to be displayed for Certain group of user only? Thanks.
Does anyone know if it would be possible to filter a table using math operators ‘<’ or ‘>’? I have a table which specifies ‘passenger capacity’, and I want to find all vehicles with a capacity < “X” (X = user entered value). I might also want to extend that to all vehicles with a capacity > “Y” So the filter would need to work across both < and > operators.
I am looking at how to build an aggregate model for a table to display a simple sum across the objects in the model. I have followed Page Not Found — Skuid v15.1.6 Documentation but don’t need the filters involved. The screenshot underneath the heading “…and by Industry!” highlights the sum I would like to create. I have an aggregate model, have made groupings etc. But I cannot get a sum of the values in one column. Jacob
I have a subtab (coverages) that is a child of “vehicle” object, the vehicle object is a child of account. On the attached screenshot, you will see that I layed out the page with Field editors for “Vehicle 1, Vehicle 2, Vehicle 3, Vehicle 4” I like the layout but not sure if it will work and how to make it work. Each Field Editor (Vehicle 1, etc) should have data from a different record in the coverages object, which is related to the vehicle object. Is this possible? If so, can anyone point me in the right direction. Thanks
A common use case for creating lists viewed on Tabs is a view of “My Objects” and “My Teams Objects”. The first is based on Record Owner = Record Viewer, the second is based on the concept of Roles & Subordinates. I am sure I could create model conditions to filter these values explicitly, but if I were to modify the Role Hierarchy the filters may no longer be applicable. Is it possible to condition a model based on “Roles & Subordinates”? Thanks, Jacob
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.