Somnath Pathak

Results 10 comments of Somnath Pathak

@AllenFang Great. Is there any default id assigned to the search and filter fields, if not then how can I explicitly assign an id to them?

@AllenFang I was able to clear out the search field with the below DOM manipulation `const tableGlobalSearchInputEle = document.querySelector('div.myCustomClass-container div.react-bs-table-search-form input.form-control'); tableGlobalSearchInputEle.value = '';` But since we have multiple column...

@AllenFang As filter searchField's value is controlled by state and thus a DOM manipulation is not updating the textBox. We have found a workaround for our TextFilters, `this.refs.name.textFilter.state.value = '';`....

is this feature included in the latest version? I want to scroll horizontally through a table and load content dynamically. @dhilt

@dkhokhlov Could you please guide me here.

UPDATE: The agent configuration works fine with just the two below-mentioned mounts as well. Should I still consider using other volumes as well? ```yaml volumes: - name: varlog hostPath: path:...

Can someone from the team please look into it and provide the requested guidance?

@dkhokhlov ```yaml - name: varlog hostPath: path: /var/log - name: vardata hostPath: path: /var/data - name: varliblogdna hostPath: path: /var/lib/logdna - name: varlibdockercontainers hostPath: path: /var/lib/docker/containers - name: mnt hostPath:...

@dkhokhlov Thank you. My configuration would now look something like below: ```yaml - name: varlogmyservice hostPath: path: /var/log/myservice - name: vardata hostPath: path: /var/data - name: varliblogdna hostPath: path: /var/lib/logdna/myservice...