Patrick Maciel

Results 11 comments of Patrick Maciel

Hi @oranja . I already do that: powerline, nerd fonts, etc. Only the font IBM "works" (I think) ![image](https://user-images.githubusercontent.com/671670/37523108-b8177d46-2904-11e8-86c7-9be366a5223a.png)

I can solve this partially doing that: ``` tr.add('td{someValueHere'); ``` But in my old code I need after that add an input inside this `td`, because that I need the...

What I know is: When the table is empty, the same code works. When the table has some rows and I need to add a new one without remove the...

Hmmmmm... maybe thats the problem. I notice when the `textContent` not work the `td` element created by HTML has an array element inside, something like this `element[0]` or `array[0]`. I...

Now I not understand... why `field.each('value')` return an array? ``` input value Array[1] 0: "[email protected]" length: 1 __proto__: Array[0] ```

Still no work, and just in one location and for one table. Thats my case: 1 - I fill the form ![captura de tela 2015-08-01 21 17 53](https://cloud.githubusercontent.com/assets/671670/9024120/4777066a-3893-11e5-80a1-a4c092186ca1.png) 2 -...

I convert my code to DOMx but get the following error (I'll post that in DOMx repository too). ``` Uncaught HierarchyRequestError: Failed to execute 'appendChild' on 'Node': Only one element...

I think I found something. When I execute in Google Chrome console this code: ``` var table = document.query('#my-table-id'); ``` I get **undefined**. So I wait 2 seconds and execute...

I figure out something: - I get the some table by id - then I append some `tr` and return that to a var called `tr` - the I create...

The first post is a complete working example. Anyway, I will try solve that. Thanks for your time sir.