Posts by Ysabelle Sousa • 339 points
14 posts
-
1
votes1
answer395
viewsQ: How to add Datetime.Time in Pandas by group by?
I have a dataframe with two columns of Total CPU Time and Date, in the format below: Total Cpu Time: 00:00:14 Date : 2019-02-06 I need to do a group by Date that adds the hours (without disregarding…
-
2
votes1
answer901
viewsQ: Multiselect in dropdown format in Bootstrap 4
I’m having trouble finding a multiselect in bootstrap 4 with "dropdown" format. The only element it allows is this way: I’d like to leave it in this format: As I recall, this did not happen in the…
-
1
votes0
answers23
viewsQ: Custom Fields in Zoho Integration?
I’m doing an integration in Zapier, Zoho Forms with Zoho Projects. My Rigger is when entering a new record in Forms and my action is to create a new task in Projects, but when customizing this…
automationasked Ysabelle Sousa 339 -
1
votes1
answer56
viewsQ: How to force a click on a highchart point?
I have a page that from the click on a point of the highcharts chart, displays certain details in a table. For certain type of user profile, I need these details to be displayed as soon as this user…
highchartsasked Ysabelle Sousa 339 -
1
votes1
answer63
viewsQ: Generate Datatable checkbox by sDefaultContent with different Ids
I am generating a checkbox for each line of Datatable through sDefaultContent, but when I perform an action in one of the checkbox, this replica for all others. I’m having trouble generating a…
asked Ysabelle Sousa 339 -
1
votes1
answer417
viewsQ: How to include a checkbox column for all rows in Datatable?
I would like to place a column at the end, with a checkbox or toggle switch button for all rows coming from an ajax call. I managed to put by sDefaultContext and mRender, but the checkbox does not…
jqueryasked Ysabelle Sousa 339 -
1
votes1
answer577
viewsA: How to make the Highcharts chart always show Plotlines?
RESOLVED I solved the problem by adding an initial series, since my data is dynamic, setting the values of the axes that correspond to each value of plotLine, a pro X and another pro Y, so it will…
highchartsanswered Ysabelle Sousa 339 -
3
votes1
answer577
viewsQ: How to make the Highcharts chart always show Plotlines?
I would like to know how to make the chart based on the value of PlotLines, without setting a minimum and maximum size for the chart. For example, I have an X-axis pro Plotline of value 30 and…
highchartsasked Ysabelle Sousa 339 -
0
votes1
answer73
viewsQ: How to bring the selected ball forward (z-index major) in Highcharts?
In the series, I have the event legendItemClick, that when I click on the caption he arrow the ball as Hover. I wonder how I do to bring the same forward? legendItemClick: function () {…
highchartsasked Ysabelle Sousa 339 -
3
votes2
answers4566
viewsQ: Make 'Ubmit' button expect action from an Alert?
I have an HTML form with a Submit button. Validating the fields at the click of the button, if they are invalid, an alert is displayed, but it disappears quickly and the form already redirects to…
-
3
votes1
answer1766
viewsQ: Jquery Masked input with regex?
I put the following script to put only month and year in input, and set regex to accept typing from 1 to 12 for months: $.mask.definitions['X'] = "^([0-1]|1[0-2])$"; jQuery(function($){…
-
1
votes3
answers4070
viewsA: Line Breaking Problems in Bootstrap
Use the property "float: left" to leave one next to the other. For example: #idElemento { float: left; }
-
2
votes2
answers2465
viewsA: How to fix an input within a responsive div
Set the input position to fixed: #idinput{ position: fixed; }
-
2
votes1
answer358
viewsQ: Highcharts: How to make the chart appear even without data?
I integrated the Highcharts chart with a tree. Then, when selecting a hierarchy in the tree, automatically the chart is loaded with the selected information. But when there is nothing selected in…