Jump to content

Breee

Caspio Ninja
  • Posts

    36
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Breee's Achievements

  1. Hi. I reached out to suppot a while back and was advised that hiding columns in the new PDF download feature would be considered custom code. This was surprising since the pdf generator provided by Caspio only displays what the user sees on the screen and all hiden elements remain hidden; the only hiccup is that this process requires 2 datapages to work properly. The PDF generator only captures what is on the page along with set margins and zooms that I added to the code. I still don't have an answer to this issue related to the new PDF download feature so I thought I'd check back to see if anyone has found a way to hide columns when using it. I have lots of calculations so my report download is super small when the PDF is produced. All input is greatly appreciated. Thanks.
  2. Thanks for the response. I have opened a support ticket. I'll update this thread when I receive feed back. Best, Breee
  3. Hi, I'm using the new Caspio PDF report download option. I'm noticing that my hidden columns show up on the PDF. Previously, I was using the Caspio PDF generator code provided by Caspio based on my account type and the hidden columns remained hidden. I tried placing the hide column JavaScript in the source code for the PDF configuration but that does not seem to work. Does anyone know how to hide columns on the tabular reports using the new PDF feature? I'm using the the data in the hidden columns for SQL calculation purposes but the end user does not need to see the raw math. As always, I appreciate the input. Thanks, Bre
  4. Good Morning, Is anyone else experiencing any tabular report styling issues since the new release? I was informed by support that my pages that use javascript might be conflicting with AJAX. I'm confused because they were perfectly fine prior to the release. Over the weekend I went through my entire application and found that there are styling glitches that are happening. For example, my bulk edit dialog displays on top of the tabular report. If the user decides to make addt'l updates it displays behind the report when selected a 2nd time. The z-index is set for this element so I'm not sure why the sudden changes to the display. I also have the group label issues mentioned above the col-span tag disappears, checkboxes not displaying, etc. I'm trying to determine if I'm the only one experiencing this. It's frustrating because everything has been working just fine for more than a year. Further, it's limiting the functionality of my application. I'd appreciate any feedback. Thanks. Bre
  5. Thanks Douvega I will try that to see if it works. I'm with you on the whole clear cache external user situation steveruehlen. This is my issue as well. I also experienced some styling issues with my reports so I'm afraid to touch anything at the moment. I have Caspio support assisting so I'm hoping that will also be resolved. Thank you both for your input. Bre.
  6. Hi, I use grouping on most of my tabular reports. I'm still actively working on my application so I may have to go back to already existing datapages for edits all the while creating new datapages. What I've noticed is that the grouping function for tabular reports use to display a col-span styling element that no longer exists post the Caspio Update. If I create new datapages or edit new ones my grouping is working in the likeness of standard column headers which defeats the purpose of having a grouping capability. In my pre Caspio Update existing datapages that have not been edited since the update the grouping headers span the entire column count as they should. Does anyone know how to fix this? I have over 150 datapages that use grouping in some capacity. As you can imagine, it's a lot of work. My reports do not look that great w/o the grouping function spanning the column count. Please see examples below. For example: Pre Caspio Update (Correct) - Test Group Header (Spans 3 Columns) Column 1 Colum 2 Colum3 Post Caspio Update (Incorrect) - Test Group Header (Spans Itself Only) Column 1 Column 2 Column 3 Thanks. Bre
  7. Yes, I experienced this issue as well. It was resolved by clearing the cache and browser. Not the perfect fix but at least users can log-in.
  8. I am also trying to apply the same logic on a bulk edit webform I need the update button to hide conditionally. I need to hide the update button when CorpEOPIDGen is checked (yes) . I'm unable to call the bulk edit update button to hide it based on the checked logic above. This is what I have so far. <script> if (document.getElementById("EditRecordCorpEOPIDGen").checked){ document.getElementById("Mod0EditRecord").style.display="none"; } </script> ...also tried <script> if (document.getElementById("BulkEditCorpEOPIDGen").checked){ document.getElementById("Mod0EditRecord").style.display="none"; } </script> I've yet to successfully hide the update button on the bulk edit webform. Any assistance would be appreciated. Thank you.
  9. Thank you so much DesiLogic! This works perfectly! Bre
  10. Hi Franchiser, I'll post a sample page is a few. In the meantime here are the end-user's steps. Ex: - Enter search criteria into Caspio Search Form - Search and Report displays 5 rows; calcfield value of each row is $20.00. - App Parameter (used is the header section of the report) includes a calcfield that shows the sum/grand total amount of the 5 rows displayed on the search and report $100.00 (5 rows at $20.00 each = $100.00). - End User changes the first row to $0.00 using the bulk edit update. - Search and Report displays $0.00 for the '1st' row and $20.00 each for the remaining '4' rows = $80.00 - App Parameter continues to show old grand total amount, $100.00, as if the bulk edit update did not occur. (Manually refreshing the page will display the updated grand total amount of $80.00) **It seems that the bulk edit update function does not apply to app parameters whose data might be affected when calcfields are being used in the app parameter. I'm trying to bypass having the end user manually refresh the page whenever an update is made to the report using the bulk edit. Is there a way to refresh a page after the bulk edit update button is clicked? Thanks so much for taking a look at my question. It is greatly appreciated. Bre
  11. Hi Carlson, Thanks so much for the feedback. The update seems to have affected some of my scripts and my delete triggers. Grateful that you will be sharing your troubleshooting results with the community. Many Thanks! Bre
  12. Hi. I've been using this script which was working perfectly through last week. Currently, it selects the checkboxes but now fails to select the bulk edit link. I'm not sure how to update the script to open the link. Any assistance would be appreciated. Thanks. Bre
  13. Hi, I'm using an app parameter on a search and report that displays calculated totals based on the end users search. The end user then has the ability to make changes (via the bulk edit) to the data displayed in the report. Once the bulk edit is submitted the data on the report refreshes fine; the app parameter does not refresh to show the changes made by the end user. The app parameter is being used to display grand totals. I can click the refresh in the browser which does update the app parameter. How do I get Caspio's app parameter to update when the report is updated without performing a manual browser refresh? Thanks, Bre
  14. Hi Roattw, I had similiar issues when starting out. Capio's calc fields have some limitations that I wasn't accustomed to. I reached out to support and was provided with the following guidelines for the use of SQL in Caspio's calc fields: Here what can be used in our calculated fields:- Any expression: https://msdn.microsoft.com/en-us/library/ms190286.aspx- Any transact SQL function - https://msdn.microsoft.com/en-us/library/ms174318.aspx- CASE statement - https://msdn.microsoft.com/en-us/library/ms181765.aspx- SELECT returning scalar value: https://msdn.microsoft.com/en-us/library/ms189499.aspxYou cannot:- Define variables - Define functions- Use UPDATE/DELETE/INSERT clause. Hope this helps a little. Bre
  15. Hi, I have a trigger that has been functioning for well close to two months without issue. Suddenly, the trigger is failing to validate or push/delete information to the specified table. Upon review I'm now receiving this error message 2031 "Datasource field is invalid because it's name is absent" is a where clause. This is strange since no changes have been made to the trigger or the tables. The datasource fields are present which is why they are able to be selected. I tried to research the error but it seems to be general in nature. Also, the same datasource fields are being used in a where clause elsewhere in the same trigger without issue. Any direction that can be provided would be much appreciated. This is a MASTER trigger that provides the backbone of my application for all intensive purposes. Thanks, Bre
×
×
  • Create New...