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
Joe tagged onto another conversation but I thought his problem was worthy of a separate topic. Here is his use case: I want to show a dashboard where information is aggregated by some category, but there is also prominent display of the total. (More prominent than the total line at the bottom of a table) I also want both the table of categorized data, and the prominent display of the total to respond to filters. We first went down a multiple model approach, but quickly discovered that the filters were going to be too complicated to keep everthing in synch. What to do?
Is it possible to access the campaign influence object? I’m trying to add a table to our opp page and can’t figure it out. Would also like to have the ability to add an opp to a campaign. Essentially looking to replicate the campaign influence related list from the standard opp layout. !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20150430-15366-8n3pv3-Opportunity Hallmark_Baby_via_DEG_ salesforce_com_-_Unlimited_Edition_inline.png “Image https//d2r1vs3d9006apcloudfrontnet/s3_images/1196859/RackMultipart20150430-15366-8n3pv3-Opportunity__Hallmark_Baby_via_DEG___salesforce_com_-_Unlimited_Edition_inlinepng1430419565”)
Is anyone aware of any problems using Skuid with the new SF Process Builder.I have had an issue with a simple process and SF support believe it may be something to do with the fact that on edit the object redirects to a Skuid generated visualforce page.They are continuing to look at it but wondered if anyone else had encountered similar issues?
We’ve just been playing with importing data from an old Access database into salesforce using the skuid excel import and it is very useful (especially for rapid prototyping). However, we are running into the following error: Apex CPU time limit exceededError is in expression ‘{!validateFile}’ in component apex:commandButton in page skuid:import: (skuid) When we break the data down into much smaller csv files (e.g. a couple of hundred rows) it works (but is a bit painful). There are quite a few columns in the data, so i am guessing this is hitting some limit in a loop?
This question is somewhat related to this post Conditionally render drawer component based on context conditions.I have a drawer action defined on a table. Within the drawer is a tabset that contains a tab that contains several tables. The use case is the conditionally render each of the tables based on the context row.Of course, table column rendering would work great here :).Any thoughts?Best,Irvin
Hi All, We are working on Site pages, we are followed all steps from URL: http://help.skuidify.com/m/11720/l/114236-build-force-com-sites-with-skuid but we struck at step 5 point D from above url ( D. Select the User and Make sure they have a Skuid Licence ) We are unable to find managed package section in our sandbox.see below screen shot, How we can get? Please help us to add Skuid licence to site user. !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20150429-14501-9gyuy4-User Teacher_of_the_Year_ salesforce.com___Enterprise_Edition_inline.png “Image https//d2r1vs3d9006apcloudfrontnet/s3_images/1196046/RackMultipart20150429-14501-9gyuy4-User__Teacher_of_the_Year___salesforcecom___Enterprise_Edition_inlinepng1430301377”) Thank you Shaik.
I have an Attachments tab on an Account page. Built couple of months back, it has now stopped working. Have rebuilt the tab (Upload File -> Account record, table underneath). It works fine in Preview mode - shows file selection window, but does not when in the main application - does not show file selection window - does nothing. This was working fine until recently ?
I am developing my mobile solution and creating an audit. I have a number of fields that are check boxes. In Skuid Mobile the check boxes appear as sliders instead of check boxes which is fine. But the sliders say On or Off. I looked in the developer console and I know I need to change this line from On and Off to True or False. I would also need to make the slider wider to accommodate more characters. ANd make true be in light green and false be in red. I know I can do the coloring using CSS. But how do I change the label from on off to True False?input[type=checkbox]:before { content: ‘True’}input[type=checkbox]:checked:before { content: ‘False’}
Having a problem with the arguments passed to my snippet from a Page Title component. var model = arguments[0].model, row = arguments[0].row; I’m getting model, but row comes back undefined, even though there is a row of data in the model (model.data[0] exists). Any idea why this might be happening?Is model.data[0] equivalent to a row object? In that case, I could just use var model = arguments[0].model, row = model.data[0];
I have a detail page with attachments table, when a user flags an attachment for deletion the flag is removed before they are able to click Save.Does anyone knows why this is happening?
I am trying to include a link to the new case form on a skuid page. I have tried adding the link as a template component or as a button in the page title component (preferred method). This page is being used in the Service Cloud console and I can’t figure out how to get these links to open in a new console tab instead of in the current window or a new browser tab.The links in the tables on this page open in a new console tab just fine, but these custom links I’m adding will not.Any advice?Thanks,Adam
Hi All, We got heap size error while creating page,Here we need to work with 61 Models and 12 record type based on that record type we need to render appropriate field editor and tab sets. below screen shows our page “Pagebuilder”. we are following the suggestion given by Zach (https://community.skuid.com/t/skuid-error-apex-heap-size-too-large-9436523) we are loaded only necessary models and fields. please follow the screen shorts S1: S2:
I have three objects. Candidate Training Recommended Training Recommended Training object is junction object of candidate and training object with master relationship. I have created candidate view page from where I can add recommended training. I can add recommended training. Check below screen shot. After create new record when I am trying to edit same record by clicking inline edit action nothing is happened. I am facing this issue for all the junction objects.
I have two object one is candidate other is work experience. I need to create one report based on candidate object. In that object I need provide date rage filter of work experience object. I don’t know how I can create date rage filter from one object to other object. I have from date in work experience object. Work Experience object is child object of candidate object. Now I need to use from date date rage filter into candidate object. I need your help in this task.
I’m working with using skuid & the new lightning connect/external objects features, and have run into a few issues. The main issue is that objects with parent relationships defined as the new “External Lookup Relationship” don’t seem to be supported - in the models, I cannot access fields from the parent object like I normally can with a “normal” Salesforce object. Skuid just says that the external lookup field is a string, instead of recognizing it as a lookup. Is this something that is currently supposed to be supported? Or is this issue currently expected with the latest release?
I’m trying to create a Field Editor tab with fields as outlined from a field set. I am currently pulling down the field set through an Apex Soap call and using it to rebuild and query a model dynamically. Is it also possible to build the field editor dynamically?Thanks,David
I have a few fields on the Contact object that are of the ‘lookup (file)’ data type and allow users to upload a single specific document related to that Contact. For example, “Attach: Credit Application”. The default field renderer in Skuid for fields like this is ‘File Upload’ which works great! Except for one big problem… It is waayyy too easy to accidentally delete an uploaded file, and so, I’m asking if there is any way to setup a pop-up that would say “Are You Sure You Wish to Delete?” Please see attached imaged. Thank you for any suggestions.
I have a field called Lead Name that looks up to the Lead object. I then have other fields like Lead Phone, Lead Street, Lead City, Lead State and Lead Zip. All those filed values are dependent on what is selected in the Lead Name. As soon as I select a lead name I would like to have all the related data fields updated automatically. Right now the fields are not populated until the model is saved. I tried setting up an action and re-querying the model when the Lead Name changed but that caused some issues for the page. Any thoughts???
I have tabs hidden that when exposed do not error out when a user hits save.https://docs.google.com/file/d/0B409lhd9sYDcOWFpVUxYMFJqT1k/edit
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.