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
er …uh … why? Anyone else ever see this?
I’d like to create a button that creates a new row using another as it’s template. All fields except the name field would duplicate. The name field would be incremented by number or letter. ie. “Room 101” would be “Room 102”, or “Section A” would be “Section B”.I certainly have to use javascript, but not too sure how get there. Here is the function I have so far. function CreateIncRow(modelid){ var model = skuid.model.getModel(modelid); var lastrow = ; //(will need to know how many rows there are in order to get the last row. Not sure how to select row by index though) var lastrowlocationname = model.getFieldValue(lastrow,'Location_Name__c'); var lastword = lastrowlocationname.split(" ").pop(); If (!IsNan(lastword)){ updatedlastword = lastword++; } else { var lastwordlastchar = lastword.slice(-1); var lastwordlastcharIncrement = String.fromCharCode(lastwordlastchar.charCodeAt() + 1); var updatedlastword = lastword.substring(0,lastword.length - 1).concat(lastwordlastcharIncrement); } v
I’d like to call a function from several different components/models. I’m asking this as rhetorical question. I’m assuming I need to create a snippet for each specific model/component in order to be able to call the main function with the id of the model I’d like to use. In other words, each snippet will only be calling my main function with the “modelid” parameter passed in.Do I have this right?
How do I render Multi-Select Checkboxes Horizontally and not vertically like the built in render? If someone has an example how to do this would be awesome.
I have a popup with a page include which contains a wizard, for users to ‘create a new enquiry’. As part of the new enquiry users need to search for a reference field for a location. This seems to work fine the first 1 - 2 times the reference field is searched, but if the user goes back and changes/edits that location, the reference field autocomplete results are falling behind the page include component. See image below:The first 3 rows of the autocomplete results are clipped (not visible) and can’t be selected because they fall behind the page include.Any ideas on why this could be happening and how to remedy?
Is there any way that I can assign values from a custom field rendering snippet so that it is pushed into the actual Field Value? I have a custom snippet that calculates a Running Balance, but the actual value of the “Balance” field in SalesForce is still blank. Can anyone suggest a solution or workaround? Would be greatly appreciated.
Looking for a solution for our requirement. we have a detail page containing tab set. object record detail is in one tab and rest of the tabs correspond to its child objects. now customer wants some common actions to be displayed in tab set itself. reason to have it in tabset so that buttons are visible all the time and user doesn’t have to click on a tab first to access buttons. we cannot put these buttons above tabset as we already have differently styled buttons in page title section.there is no direct way of adding button or link in tabset. i was trying to use jquery but it adds button in tab section and not in tabset (tab panel). is there a workaround to achieve this?thanks
I have a custom field renderer highlighting the background of a field when its value is < 0… This works great, except that when there are still unsaved changes on the page the text is still in edit mode, (gold-ish colour) and pretty hard to read. I’ve tried to set the .nx-fieldtext property in the renderer but can’t seem to get it working. Any ideas on how I can set the .nx-fieldtext property? var field = arguments[0], value = arguments[1]; skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); if (value < 0) { field.element.css({ 'background-color': 'rgb(253,127,127)', <i>//this is where I would like to set the .nx-fieldtext property</i> <i> 'color':'black'</i> }); } else if (value > 0) { field.element.css({ 'background-color': 'rgb(144,228,239)' }); }
Seem to have developed an issue on one of my pages where data disappears then re-appears on refresh. See video for details:
Pretty straight-forward problem here:If my currency is set to EUR on a new opportunity, and I set a value to EUR 2,007.00, Skuid shows that the converted value is 2,676.00 USD.Yet on the Standard Layout page for the Opportunity (and in reporting), it displays as EUR 2,007.00 (USD 2,758.02).Lastly, I’m not sure if this is necessarily a Skuid thing, but it really doesn’t make sense. When I go to Forecasting, the Skuid value is used (2,676 USD).Any ideas? It seems as though it might be causing some major discrepancies between our Forecasting and our Reporting when it comes to non-USD opportunities.
“Column to Freeze” is missing when “Max Table Height” is blank
Haven’t implemented too many mobile pages, but I’m not sure I understand how this happened. I installed Skuid CRM and updated the buttons accordingly.Desktop browser works as expected.Salesforce1 app now goes to the same pages though? What am I missing? I want salesforce1 to use the standard pages and not Skuid. How do I fix this?
Install RC. Open random page and get this error:
I have a calendar component, and built a custom popup for the event display. However, when I click on the calendar (on a blank space for a new event or on an existing event to edit it), nothing happens.Any idea what might case my popup to not show up?Is it best practice to use a page include instead?
Is this still planned for today? If Yes, will there be any documentation to go along with the appetizer?
I am having problems setting up a table filter, as it appears the SOQL that is being passed is incorrect.I have a condition on a model call ‘Solution’ with the following:FIELD Solution records where Issue_type__c OPERATOR isVALUE a blank valueSTATE This condition, named Issue_type__c can be modified by filters, but is off by default.Condition State - Filterable Default OffCondition Name - Issue_type__cI also have a Filter on the table with:Filter Type - Select OptionModel Condition to Affect - Issue_type__cThe Filter Off label is called ‘All Categories’Source: Picklist Options with Just the Default Condition set.Here is the debug output when I try to use this filter:“An error occurred while attempting to perform the following SOQL query:SELECT SolutionName,SolutionNumber,Jira__c,TimesUsed,SolutionNote,Issue_type__c,Id FROM Solution WHERE (Issue_type__c = Windows) LIMIT 101Error:expecting a colon, found ‘Windows’”It appears there is no quotes around ‘Windows’ so the filters don’t work.
When save or cancel buttons are conditionally rendered and then not rendered (due to a user action), if the user then updates a row of the model that the button is saving or cancelling, it causes this Javascript error ‘Uncaught Error: cannot call methods on button prior to initialization; attempted to call method ‘enable’’. This error occurs even if the button is rendered again.I presume it is because it is trying to enable the save or cancel button (since the row is being updated) but the button is no longer rendered.
I’m trying to set up a button to create a new row in a model and a field editor to display the fields. I get it to work the first time the button is clicked, but upon subsequent clicks the field editor is duplicated (there are now two rows in the model, not one). I thought that I could simply add a “query model” action to the button, but when I do so, the model pulls the first row in the object on page load, before the button is even clicked. Nothing appears to happen when I click the button. Here are the set-ups: Model I tried playing around with the ORDER BY field, and I could get different results, but nothing that would show the new row that I created with the button. Button Actions I get the same result whether I choose to place the row at the start or the end of model data. On page load, I see this, which is what I want: After running the New Lead button, I see this (not what I want): That’s apparently the first row in the model. What I want to see it the same thing that I see on
I’m working on a couple of prototypes where file uploads are required. Basic criteria include: A user creates a record and adds files on to it. A reviewer reviews the record and attached files. Scenario 1: Require at least one uploaded file for the record but limit to 3 files max Scenario 2: Require 3 uploads to complete the process. While I like the Chatter File structure, it doesn’t appear to be natively supported in Skuid. So I’m looking for what the default ways of handling this case are. I like the flow of a wizard and thanks to some help from the Skuid support have a wizard with record creation and file attachment working. But…still not there in terms of the scenarios above and the constraints. Constraints: I would like the solution to be:Fairly intuitive interface for the user to add the files (eg 3 areas/buttons/fields where the user can attach the file so it is clear they have done what they need to for the application). Intuitive interface (and not a LOT of clicks) for the
Not sure where I read this or where I watched it, but I swear someone said they were.Is this true, if so, how?
Started showing blank a few days ago. Failed to load resource: net::ERR_BLOCKED_BY_CLIENT with Google chrome I have AdBlock installed and it is preventing the page from properly rendering. Providing this post as information for others that may experience the same or similar problem.
Skuid team, https://github.com/skuidify/SamplePages/blob/master/pages/KeyIndicators.xml Can someone commit the related pages to Github? Specifically, - LicenseOpportunitiesWonThisYear - MRR_Detail - CustomerAccountDetail Thanks in advance, Irvin
I have very “wierd” problem. I am putting a skuid page into our home page, and that skuid page has several tabs including a visual force page.When I go into the visual force “tab” and type text the screen “scrolls” all over the place. Up and down with no apparent logic. I have checked this page as a stand alone and this does not happen. I have checked the skuid page with the visual force page in it without problem. BUT when I embed the skuid page IN the home page is when this happens.I have used all the developer tools I can think of, and have found this “class” seems to be involved some how.nx-panel-scroll-variableWhen I remove this class from the parent element… all the crazyness stops and it starts behaving normally. Here is the general overview:Home page -> Skuid Page (embeded as html) -> Panel (2 vertical panels) -> Tab Set (on both panels) -> Skuid Page -> Skuid Template -> Visual force pageI have been fighting with this for several days, and would GREATLY
Model and Render Conditions support TODAY for Date and DateTime comparisons (though TODAY doesn’t work in a Render Condition, but I see that bug was reported a few months ago). I have a need to be able to compare against NOW (including the current time) for DateTime objects and have been trying to implement that via a snippet.I’ve got it working on a model condition where I set the condition to use a specific date/time in the designer, and then change the comparison value in the models condition array when the page loads. For example,model.conditions[0].inactive = false;model.conditions[0].value = (new Date()).toISOString();model.updateData()I’ve not had the same luck with conditional renders. I’ve found the component (such as $(‘#myComponent’).data(‘component’), or skuid.component.getById(‘myComponent’)), and in there I can find element.conditions … but the conditions array is empty even though I have a render condition on my component. So likely I’m looking in the wrong place?
Hello!I am trying to add a count of the record that match a filter’s criteria in that filter’s label via the suffix.Currently I have a global variable ({{$Model.Potential.data.length}}) that is giving me a count of the entire model, but I want it to show how many records of each Sales Stage there are. Any ideas? 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.