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
Thanks Rob & Zach,I currently have this working in a test org with multi currency enabled. Just wondering if its possible with a render snippet to hide the currency code prefix? As we have 6 currency columns, in addition to the currency picklist, each one of those is rendering USD or EUR etc, so each column is repeating unnecessary values. We do want to give users the ability to edit the currency in the row, so there isn’t really a need to specify currency on every other field in the row.I recall seeing a post about this a few days ago but have searched high & low and can’t seem to find it now. Maybe I dreamt it. Sometimes I dream about Skuid.Would it be possible to hide the 3-letter currency prefix? Note: This topic was created from a reply on the Multi Currency with Skuid in a Managed Package topic.
Is there a way to control the screen position of a popup? I have a custom popup with an image, but it always open cutoff on the bottom of the screen…
Just wondering if anyone out there has gone through the process of deploying Skuid in a managed package AND offering optional Multi-Currency support in that package?We have a few customers (not all) requesting Multi-Currency, and we will of course need to include dynamic apex into our triggers and classes to allow for this, but how do we also do the same for Skuid pages?If we include the currency field in a Skuid page, will it be automatically dropped for orgs which don’t have multi-currency enabled, or will the page throw an error on load?
I’ve been searching for an answer on this, but cannot find it. So I thought I ask. I want to disable a Tab Panel within a TabSet. If so how? Thanks.
I recently completed the “Table Component: Custom Field Renderers” tutorial and it worked as expected. We have successfully created a custom editor for a picklist field in a table element. However, we weren’t happy with the ui-silk icons used the example so we added the font-awesome css as an external resource and are now using the font-awesome icons in place of the the silk icons. Taking it a step further, we would now like to add text labels to the icons. However, our javascript skills are rather limited and we are at a dead end. Using the same example from the tutorial, how can you add text labels to the icons created for the custom editor? Here is the javascript snippet from the tutorial that we tweaked to pull in the font-awesome icons (we are also using bootstrap to generate the button colors): var $ = skuid.$, field = arguments[0], value = arguments[1]; var cellElem = field.element .css( 'margin', '3px' ); switch( field.mode ) { case 'read': case 'readonly': var
We recently purchased some custom web fonts that are being served by typography.com. However, part of the instructions from typography.com include adding a uniquely licensed css link to the head of the page that we’ll be using the font. Since we don’t have access to the tag in Skuid, is there another way that this could be accomplished? Thanks in advance for your response!
I have a custom visualforce tab called billing that loads a Skuid page. We have created some cool ways to submit billing for different codes through this page. However, I don’t want users with profiles of “Director” to be able to see the tab called “Behaviorist Billing” and I don’t want users with profiles of “Behaviorist” to see the “Director Billing” tab. My first approach was going to be to use page assignments to create different pages for Director profiles and a different page for profiles with Behaviorist profiles. My understanding is page assignments work for object tabs but not for custom visualforce tabs. Correct me if I am wrong. So my next thought was I could conditionally render the tab so only the right tab shows up based on the user profile of the user viewing the page. So I created a model called User, added the id field, the profile id, and profile name fields. I then added a condition. id = to user info of user viewing this page. I then go to the “Behaviorist Billing”
I’m working on trying to better automated some of the steps in our deployment process, and am wondering if there’s a way to run the package & unpackage pages features (where the pages are stored/pulled from a static resource) from apex. I’m using the metadata API to pull down our changes from our dev sandbox & push them to our QA sandbox, but right now, I have to go into the dev sandbox, package the pages, then remember to unpackage them once the deployment is done in the QA sandbox.I think I have a way to execute anonymous apex with the metadata API - does Skuid currently give us a way to execute these 2 functions in apex?
Is there a way to have a panel set with a defined width panel (300px) and another panel that will cover the balance of the panel set width?
I have a list of images (icons) in a document folder. (on Salesforce)I have a custom object that I would like users to be able to select one of the Icons and associate with an entry.Users can add an icon at creation, and modify on edit. The basic object create/edit page exists already, I do not know how to populate a list from another table as a dropdown for the user to select from (and save as a string which is the URL of the image)I can do this in visual force pages and js, but I’m very new to skuid. What is the best way to do this? any examples/tutorials would be appreciated.
When is the next Skuid certification class?
Is there a limit to the amount of values that can be in a picklist on the Field Editor? I have a picklist showing the names of records and I am seeing a list of 50 out of a possible 56 records. (I have confirmed that this is not an issue with model conditions.)If there is a limit, can I increase?
I know this can be done with the ‘Mass Actions’ option, but I’d prefer to do it with a script if possible…
I have a popup table with the option to click a Row Action that needs to open the Page Include panel to the selected record. I have the Row Action set to ‘Redirect to URL’, but I need to understand what URL to input and how to open the URL in the Page Include. Any thoughts?
The meeting date field below needs to have Today’s date by default and allows the user to adjust. What’s the best way to meet this requirement? Do I use a Field Renderer Snippet?
I’m trying to figure out how to dynamically color a status picklist on a lead’s table. Can you suggest the best way to do this? The leads will be updated via a popup and will need to re-render if it’s changed.
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
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.