-
Content Count
123 -
Joined
-
Last visited
-
Days Won
7
SunakoChan last won the day on September 22 2020
SunakoChan had the most liked content!
About SunakoChan
-
Rank
Advanced Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
fischerrestore reacted to a question: Border color in the Results Page of the Tabular
-
Border color in the Results Page of the Tabular
SunakoChan posted a question in Styles and Localizations
Hi Team, It is possible format the output result page fields to have a grid just like a table in Excel? Thank you in advance -
Hi @WatashiwaJin, For limiting the minimum Character, you just need to change the value of min to 8: If the value is less than the min character it will show a message and it will not allow you to submit the value:
-
beptucongnghiep reacted to a question: How to hide "No records found" and Header
-
I'm trying to change the background color of the Submission form DataPage and also the Buttons, is it possible to configure this in the style?
-
Hi - I want to hide the message 'No record found ' and the header of the DataPage.
-
Hi - I wanted to know if it is possible to adjust the height of the Dropdown and the options inside.
-
vanderLeest reacted to an answer to a question: Date format
-
Hi @Telly, I suppose that you are using Date/Time field. Since it is a Data/time field you have to convert the Field in to text after that use substring for the month, you may use this formula below: CONVERT(VARCHAR, (SUBSTRING('JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC ', ((Datepart(month, [@field: DATEFIELD])) * 4) - 3, 3))) + ' -' + CONVERT(VARCHAR, (Datepart(day, [@field: DATEFIELD))) + ' - ' + CONVERT(VARCHAR, (Datepart(year, [@field: DATEFIELD]))) I hope this helps.
-
Stacked Column Color Setting Question
SunakoChan replied to DaleW's topic in User JavaScript and CSS Discussions
Hi @DaleW - have you tried to change the color in the style. Just go to style > Chart > Values. I hope this helps -
Javascript in Footer executing in 3 Times
SunakoChan replied to Elderberg's topic in User JavaScript and CSS Discussions
Hi @Elderberg, Upon check this with my end it seems that it is working properly, you may check the behavior on this link: https://c0dcv045.caspio.com/dp/aa4a60001bbdd474c93346849048. Try to clear your cache or use other browser and try access it on Deployed DataPage URL. I hope this helps. -
Hi @wimtracking2, Since you have verify that the script is working in the WordPress and I believe this is working also in direct URL of the DataPage. You mighty need to contact the support of Weebly . I have found also some article that have similar issue: https://community.weebly.com/t5/Site-Editor/JavaScript-function-not-working/td-p/65655 https://community.weebly.com/t5/SEO/JavaScript-not-being-called/td-p/704
- 1 reply
-
- javascript
- imask
-
(and 2 more)
Tagged with:
-
SunakoChan reacted to an answer to a question: Accessing a field from differnt table than datasource
-
Accessing a field from differnt table than datasource
SunakoChan replied to bertc's question in Tables, Views and Relationships
Hi @bertc, As I understand that you need to get the Country associated with that record from your table students. What I can suggest is to join the table, afterwards create a view. For more information in joining the tables, you may check this helpful articles and video: https://howto.caspio.com/tables-and-views/what-are-views/creating-a-view-to-join-tables/ and https://howto.caspio.com/getting-started/create-a-one-to-many-relationship/. Regards, Sunako -
Obtaining Display Value in a Formula Field
SunakoChan replied to ronbrumbarger's question in Calculations and aggregations
Hi @ronbrumbarger, You can use select statement to get the values from the table inside your calculated fields or values. You may check this function reference: https://howto.caspio.com/function-reference/ I hope this helps.