Hi all! I am trying to check/uncheck the checkbox value I added to card report as apex_item.checkbox I tried to build the function and put it as url in redirect action of card report, but without success. Do you have any idea? Thanks in advance?
Discy Latest Questions
I was unable to make the button in a parent page hide when i click a button in a corresponding modal page after the modal dialog closes. I used many methods but it only requires me to refresh parent page to hide the button. I also tried executing javascript and server-side code in dialog close in dynamic action but in vain. Please help me find a solution.
Hi, so i have a problem when i try to get value out of interactive grid i get [object Object] in text field. I found out the reason for that output is because i was trying to get value out of select list column. When i try with any other column type textfield or numberfield it works great and return value correctly. That's the javascript code I am using for retrieving value. if(this.data != null){ if(this.data.selectedRecords[0]!= null){ selectedRecord = this.data.selectedRecords[0][4]; apex.item( "P34_TEST" ).setValue(selectedRecord); } } Thank you for any help!
Hi! I am trying to hide the left column on the button click. I tried with DA which execute js code: $("#t_Body_side").toggle(); and it hide the left column. But, the space where the left column was is not populated with other regions. How to hide the left column and change the width of other regions to populate free space on the screen? Thanks in advance!
Hi Team, is there any global javascript/JQuery to automatically set the red color style of FONT, if the number is less than 0. Currently I am using autonumeri.js file to format the numbers as excel sheet. Only thins missing is RED color. CSS COLOR should apply based on IF condition. $('#P1_ITEM').autoNumeric('init', { allowDecimalPadding: false, currencySymbol: "$", decimalPlaces: 0, roundingMethod: "D", mDec: '0', negativeSignCharacter: "−", negativeBracketsTypeOnBlur: "(,)", unformatOnSubmit: true }).css("background-color", "yellow");
Hi. Is there any good and easy method to validating(Client side) multiple input fields? I just came to know Parsley JavaScript form validation library. Is there anything better than this one? Thanks.
Hi! I integrated Oracle JET Timeline in an APEX app, following this tutorial: Link I am using APEX 20.2. Now, I am trying to include table data to timeline. Currently, I set data with JS: require(['ojs/ojcore', 'knockout', 'jquery', 'ojs/ojknockout', 'ojs/ojmenu', 'ojs/ojtimeline'], function (oj, ko, $) { function ViewModel() { var self = this; self.seriesData = [{ id: 'e1', title: 'ATP VTR Open', start: new Date('Feb 4, 2013').toISOString(), end: new Date('Feb 10, 2013').toISOString(), description: 'Finalist: 3-1' }, { id: 'e2', title: 'ATP Brasil Open', start: new Date('Feb 11, 2013').toISOString(), end: new ...
Hi! I am trying to trim spaces in the IG column - Popup LOV search, for instance, when I copy and paste text with space before the first letter I can't get results, without space it works. How to trim spaces in the search box? Thanks in advance!
Hi! I have comments report in a modal dialog, with the actions column, the action column should open a hidden region and set item values for edit. How to set values and show the hidden region? I assume that I need to do that with JavaScript. Thanks in advance!
Hi! I am using Faceted Search with the Show Chart set as a selector, and I want to display charts on page load, without a click on the icon. How to achive that? Thanks in advance