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
How can I manually invoke a filter/condition? Take a look at this page: http://www.biadev.com/directory My goal here is to hard code the links into the custom menu I built on the left. I thought about using tabset but changed to this, the thinking there being less tabs, less tables, less page load strain this way. But anyways, how can communicate with filters directly? Can I add it in the url or if there’s JS for this could you get me started? Cheers,
I’m creating a tab page for the Campaign object and would like to setup a filter on the Owner field so that one can look at My Campaigns in addition to All Campaigns. How does one setup a filter so that it chooses the right value based on the user in Squid?
I’m still in my trial for skuid so I hope its ok I’m posting, so far very impressed. You guys are pioneers. I’m having only one issue right now: Is there a way to group tabs and add labels to those groups, for example, First Tab Group Label ----- First Tab ----- Second Tab ----- Third Tab Second Tab Group Label ----- Fourth Tab ----- Fifth Tab ----- Sixth Tab and so on. Or even better, to insert HTML in between tabs. The goal here in my case is to construct a full sidebar menu that holds both tabs and html snippets. Is this a simple matter of editing the skuids tabs component?(if perms even allow?). Cheers,
Is there any way to write code to call an apex function from within skuid?
I would like to create a aggregate/summary table that shows sales trend between months… Account | Prior Month Sales | Current Month Sales | % Change This may not be possible…I wanted to check…thanks
I have a search box on a table. But I’m not clear on what fields are being searched. It doesn’t appear to be all fields, so which types are included or excluded, and can I adjust any settings? Thanks.
How can I define a Row Action that updates a field within a row. I’ve attempted the following, but I’m getting a ‘Visualforce Remoting Exception: Attempt to de-reference a null object’ error. Row Action, Action Type = Custom, using inline snippet as below: skuid.snippet.registerSnippet(‘orderLineItem.CalculateCost’, function(params) { var price = params.item.row.Price__c; var quantity = params.item.row.Quantity__c; var cost = price * quantity; params.model.updateRow(params.item.row, ‘Cost’, cost); params.model.save(); }; Also, is it possible to just update the value when in edit mode, and let the user initiate the save. I commented out the “params.model.save()”, but nothing is updated in the UI?
Zack answered a previous question on custom settings. I can see them in SKUID and create a model from one… but the field I want to apply the values in the custom setting to (custom setting is a list of disabilities) is just a text field in the participant_disability object… so when i make a table for the participant disabilities, the “disability” field does not give me the option of setting up a drop down list… i guess it has to be a “lookup” type field to do that So how can i use my custom setting ?
I have participants, who have disabilities In the form which shows a list of participants I show only the primary disability for each participant (using child relationships) I’d like to be able to filter participants by disability, any disabilty they have, not just primary, and see the resulting participants in my list… can i do that or do i have to build an visualforce page to do it ?
I want to change the blues used throughout the components (tabs, etc) to our company red but am not all that familiar with css. How do I do this?
So, the field editor can be set to edit mode, read with in-line editing, and read only. However, I’d like to have checkboxes be in edit mode (so I don’t have to click the pencil/edit button in order to check the box) while having the rest of the field editor in in-line mode. Is it possible to set some fields to one kind of edit mode and others to another?
Hi I’m setting up Salesforce for a nonprofit using the nonprofit salesforce package. The institution mainly tracks individual contacts. There are 5 main categories / roles that contacts slot into Legal, Media, Political, Donors. There are specific fields that uniquely apply to each category such as a judge checkbox and where they are a judge, which fall under Legal. Newspaper checkbox and where, which fall under Media etc. So when adding, viewing and editing a contact, I only want the fields that apply to their specific category to show up. Assigining pages to roles only applies to a) Accounts, which we dont use, and b) Campaigns, which is a cumbersome way to set things up being that we don’t use the campaign section either. They run campaigns / projects elsewhere, on Wrike i Believe, which is a much more robust solution for them. Is there any way I can somehow go about creating this sort of functionality, in the best way for the user? Cheers and thanks, I hope I’ve described my proble
The “Assets” object in Salesforce requires the “Name” field to be saved. What’s the best practice if I’m creating a new row within the table component so that the user doesn’t have to enter anything in this arbitrary field? I have a Workflow rule that is supposed to fill in the field if it’s Null, but it doesn’t seem to get fired before Skuid updates. Perhaps there is a way to auto-populate this field within a Skuid custom render snippet? Any thoughts would be appreciated.
Hello, I wanted to use Social Profile links for FB,Twitter etc. as it comes in Standard sales force page in Skuid Page. Can i get the same in skuid? Attached is an image to Show some functionality which i want to have in my skuid Page if Possible or with Some Work arround. Please tell me out of these what i can use in Skuid. Thanks. Arpit
Hello, I want to reduce width of Particular field editors and not of whole page.So can you please help me with the same? I also attached one file for same.Here i want to only reduced width of marked columns not of whole page. Please help with this issue ASAP. Thanks. Arpit
Hello, I want to use image in my Skuid page from Notes and Attachments Related Lists. I am using an Custom Object for the same. Can you please guide me how to achieve it ? Please reply ASAP. Thanks. Arpit
Hi There While using skuid pages we have noticed that the refresh functionality is not happening well. We need to manually refresh the page several times until we get to see the data expected. In one instance, it was showing ‘Loading’ but nothing was happening at all. We are using skuid page list views. Any suggestion/ recommendation how can we refresh pages e.g. clicking on the tab, opening this page. Does it need to be something in javascript ? Thanks and regards Daniel
Is it possible to add a recordtype field (to a table) such that in edit mode a user can select the recordtype, but in view mode it renders as text instead of Url. Right now when I add recordtypeId it renders as Url to the recordtype object which when clicked takes the user to “Insufficient Privileges” page.
I know I can build related lists into a skuid page and overwrite the SF page object - BUT can I do the reverse? I am wondering if I can for instance create a related list table in skuid as a VF page and place that vf page within a standard sf page layout “section”. Is this possible?
I am implementing a redirect action from a table component that will take the user to the recordtype selection page in order to create a new object with standard SFDC UI. I have constructed the below Url and it works fine. Question: Is there any mergefield syntax that I can use to avoid hardcoding the SObject Id in the Url, otherwise this adds a cumbersome manual step during migration to replace the Id based on the target org. (Note, this is not an Id of a given record, but an Id of the SObject itself) /setup/ui/recordtypeselect.jsp?ent=01IG0000001s8EL&retURL=%2F{{Model.KeyPrefix}}%2Fo &save_new_url=%2F{{Model.KeyPrefix}}%2Fe%3FretURL=%2F{{Model.KeyPrefix}}%2Fo Decoded Url: /setup/ui/recordtypeselect.jsp?ent=01IG0000001s8EL&retURL=/{{Model.KeyPrefix}}/o &save_new_url=/{{Model.KeyPrefix}}/e?retURL=/{{Model.KeyPrefix}}/o Thanks in advance.
I have a Skuid page that shows sidebar and header. I want to add a link to my page called “Go Full Screen” that rerenders the page (no problem if it needs a server round trip) with header and sidebar hidden. I can see in the XML that showHeader and showSidebar are attributes of SkuidPage. But looking at the API reference (http://skuidify.github.io/skuid/apipage.html) it seems that those attributes aren’t accessible in Javascript. Does this mean that my “Go Full Screen” link is a forlorn hope?
Hi, I have a question regarding using queues. Right now I have a tabset that shifts between a few custom objects, and each of those tabs are using the standard queue search + detail. What I am trying to do is make it so the standard “view/edit” page for each of those objects actually links straight to this encompassing page to the correct tab for this object and then queue + detail instead of going straight to a detail page only for this object. Basically I am looking for a way for the redirect for an object to go straight to a specific tab + queue entry on a Skuid page. Is this possible in any way? Thanks!
I followed the example for filtering client records so that a user who has a flag set on their user record sees only clients that have a matching flag set… It does filter the clients… but it seems to operate in reverse if i set the filter to NOT match then i see the right records if i set the 2 flags to be equal to each other… then i see only the clients who DONT have the flag set
I have a page displaying a detail view of a row. There is a table with some related items from another object. What would be the best way to make the table of related items read-only, depending on some data in the parent row? Is it a matter of removing all the actions like add, edit, delete and save from the table component via Javascript, or is there a simpler way?
Within an Account details record is it possible to include an aggregated report of a related custom object? I have a custom object called Orders (look-up relationship with Accounts)…I would like to show an orders aggregate report within an Account form Group By (Products) Sum(Sales) Max(Invoice Date) Product_abc $10,000 07-07-2013 Product_def $8,000 02-04-2011 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.