Upcoming Event - 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
It appears that merge syntax is not supported for CSS Class property like it is for Icon Property (see https://community.skuid.com/t/navigation-item-icon-property-not-applying-merge-syntax). I’ve tested with Field Editor, wrapper, page region, etc. and none of them appear to support merge syntax.Would like to see this added, have come across several use cases for this recently. Thank you!
Using Skuid calendar for region specific rep meetings. Applying each Skuid calendar page to a VF tab. Have 16 of these tabs in a custom app, but when clicking on a specific VF tab, it still highlights the Home tab and without a title on Calendar (separate community post) it is hard to know what calendar user is looking at. Thanks!
How do I add a title to Calendar? Using Page Title component is not working. Thanks!
In some circumstances the text in the center of a donut chart is not center-aligned horizontally in the middle of the donut. It can be too far to the left or right. This sometimes means it is partially hidden behind the donut. It looks like the center text may be center-aligned within the overall chart drawing area. However, sometimes the donut is shifted to the left or the right inside the chart area due to uneven text sizes in the labels for the segments. That seems to be why the center of the center text doesn’t align with the center of the donut horizontally.
Hello, I’m still seeking help with this issue. I think it may be a problem with Skuid, so I marked this post as “Problem”. I am unable to connect to an external rest interface. Several community members tried to help and I ran a JSON diaginostic and found that my page is generating a post method instead of a get method. My Skuid page is set to method=Get, though. If anyone in Skuidland can help me out, I would greatly appreciate it. The details can be found in the below post: https://community.skuid.com/t/external-rest-data-source-authentication-issue Thanks!
I find myself in the position to need to integrate with HL7… to send SFDC data as HL7 files, and parse HL7 files into SFDC data. If I understand that correctly, that is the work that a service adapter does, correct?It looks like we can build our own service adapters in skuid. Is that the case? Is that what I would have to do to integrate?Does anyone have experience with HL7?
I have a File Upload component saving as an attachment to a record. I want to only hide this File Upload component after the user uploads one attachment.This is a create new record page, and the model being attached to only has one row. I’ve tried hacking the xml to say Render if Attachments.records.0.Id = NULL, but it’s not working. Maybe if I re-query the model after it is saved?Is there a better way to not render a file upload after the attachment is added?
Hi! I am trying to add a custom button to my opportunity layout and unfortunately when i select custom salesforce button, an error occurs and says that a recipient must be a lead or contact. I am not js savvy so I am not too sure if this would require me to run a javascript snippet.https://composer.congamerge.com ?sessionId={!API.Session_ID} &serverUrl={!API.Partner_Server_URL_290} &id={!Opportunity.Id} &TemplateID=a0f8000000E3Ede &OFN={!Opportunity.Name}+Sales+Order+{!Today()} &DocusignVisible=1 &DocusignR1Id={!Opportunity.BBilling_ContactId__c} &DocusignR1Role=Prospect &DocusignR1Type=Signer &DocusignR1RoutingOrder=1 &DocusignR2Id=“00580000005I4Jm” &DocusignR2Role=AE &DocusignR2Type=Signer &DocusignR2RoutingOrder=2 &DocusignR3Id={!Opportunity.OwnerId} &DocusignR3Type=“Carbon Copy” &DocusignR3RoutingOrder=2 &DocusignR4Id=“00580000005Hjnr” &DocusignR4Type=“Carbon Copy” &DocusignR4RoutingOrder=2 &DocusignR5I
All,We’re experiencing issues attaching a file to a custom File field on a custom object (through a skuid table). When the filename is greater than 80 characters, the file upload fails silently. When you refresh the page, the file isn’t attached to the field.We’ve noticed that the limit on the “Name” field in the Skuid File object is 80 characters. If this can be changed, that would suit our needs, but it doesn’t look like it can be.It would also fix the issue if we could use Javascript to truncate a filename greater than 80 characters whenever a file is uploaded. To that end, I attempted to write a listener that listens on the event “row.updated”, and then changes the name of the attachment if it’s greater than 80 characters, but none of the changes I made to the model were actually saved. I wasn’t able to change the filename at all this way. Is this at all possible?Thank you,Robert
When filling out online forms or even inputting values in standard Salesforce pages (using Chrome), values that I’ve recently put in a field show up just underneath the input field and let me choose that recent value. The screenshot is from creating a new custom field, but it also happens when creating a new record, which is exactly the use case for Skuid that I’m working on - creating a new record from a web user on a force.com site. We’re working to replace Formstack and Wordpress with Skuid pages and Force.com sites, but this little thing that Formstack doesn’t do is making it frustrating in the testing phase. Any ideas on why it doesn’t do this? Is there a way to get it to do this? Thanks!
I need to update some standard and custom fields upon upload of a chatter feed file on a VF page in a public site. I need to pass URL parameters into some of these fields. If I add custom controllers to the VF page and I use Skuid:page to display a Skuid page with an upload component and I use it to upload a chatter feed file, would controllers in the VF page recognize that I uploaded a file, pull in the URL parameters and add them to the standard and custom fields of the Files ContentVersion? I’m wondering if the Skuid upload component would bypass the custom controllers on the VF page.
Presumably, more models on a page increase the page load time. Seems to be a rather tedious task to remove unused models and/or unused fields within models, if, over time, developers don’t clean up after themselves. Are there any shortcuts? What would guys recommend as the best way to identify models that are not being utilized in the page and/or fields that are in models but not being referenced? Perhaps GREP the Page XML for each model name and analyze the references?Thought I’d ask before diving into a massively manual cleanup effort. :(
It’d be helpful for me to specify a WHERE statement to the SOSL query in the search component. This seems fairly straight foward given SOSL syntax. ExampleSOSL: FIND {Joe Smith} IN Name Fields RETURNING lead (name, phone Where createddate = THIS_FISCAL_QUARTER) Here’s my XML: Is there a way to write in a WHERE statement in ?
I ran into an instance where I was successfully getting a Validation rule to fire when on the standard SFDC page layout but unable to trigger it in a Skuid page. This is on a Contact Detail page. I have a few validations that always fire on a Table and other Detail pages, but this seems abnormal.
I would like a date/time field to default to the current time. Is it possible to achieve this with the override meta data functionality? I have tried overriding the meta data using a formula of NOW() but that did not default the time.Thanks!
I’ve got a rich-text field where I want to limit the number of characters that a person can enter, or at least show the user how many characters they have typed so far.I’ve successfully done this with a standard textarea using a javascript snippet but when I try it on the rich-text field it seems that I can’t access the DOM object.This works for a textarea: $(‘.Caption textarea’).val().lengthThis does not work for the CKEditor for a rich-text field: $(‘.About .nx-richtext-input’).html().lengthWhere I have defined custom classes Caption and About for the respective fields. My sense is that my javascript snippet is running before the DOM object for the CKEditor is set up. I tried various ways but could not get access to that DOM object.If anyone has an idea of how to access the CKEditor object via javascript please let me know.Trying a different tack there are plugins for CKEditor that do this already. Here is one example:http://ckeditor.com/forums/CKEditor-3.x/Character-Count-PluginIs t
Hi All, I’m having a problem with a show/hide of a panel set from a Button. I had used this code on a previous project in Skuid, on an earlier version, without an issue. Basically I want to show/hide a panel set with charts using a button and conditional rendering. The show from the hide works great. There is a field on the object and it updates accordingly. I did the exact same for the Hide, where it sets the field to No and saves the model, but it does not seem to update the model on the first try. The save button for the table shows being enabled but doesn’t do anything if clicked. I have to click the Hide button three times for the update to happen and then refresh the page for the panel set to hide. Once it is hidden, clicking show works perfectly. Any idea as to why this is not firing the save on the first button press, and even when this save fires, why the panel set is not hiding? The structure of both buttons and actions and model to save is exactly the same.
Hello,I have a Table and I need it to be filterable by end users. There are several fields, each with a service, and I need the filter to show records where only the service is selected as a filter. It’s a True/False checkbox field. Because the Services each have their own field, I’m assuming I’ll have to make a separate filter for each one (manual select option). However, when I do this, it doesn’t work. The condition on the model is correct, but for whatever reason it doesn’t work.So, I created a Toggle filter for each Service. I need it so that when I toggle one filter, it “Un-toggles” all of the other filters in the table.Is this possible, or is there any work-around? Thank you for any help.
we have the following error, while trying to clone two tabs that has parent child relationship"Attempted to add a campaign member where either the member id ‘null’ or the campaign id ### ‘null’
s there anyway to get the the details of Conga document like Id,Name ,status and put it in a table salesforce skuid page as a record of an object
I have created a model on a history object to be viewed in a table. When I drag in a field from the CreatedBy record called “View Name” I get the following error: An error occurred while attempting to perform the following SOQL query: SELECT Parent.Name,Parent.Id,Field,NewValue,OldValue,CreatedBy.Name,CreatedById,CreatedDate,CreatedBy.View_Name__c,Id FROM Member_DNA__History WHERE (Parent.Id in (‘a0gj00000010mgSAAQ’))AND(Field != ‘Created’) LIMIT 21 Error:No such column ‘View_Name__c’ on entity ‘Name’. If you are attempting to use a custom field, be sure to append the ‘__c’ after the custom field name. Please reference your WSDL or the describe call for the appropriate names. Then if I remove any reference to “CreatedBy” I still get the same error. I have to completely remove the object and start over to see the error go away.
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.