htmlform without webix style

Hello,

I have landing page made with pure css lib. And would like to submit form using webix Ajax functions.

So

  1. Form header changed to
<form data-view="htmlform" data-id="form" class="pure-form pure-form-stacked">
  1. Script added
<script type="text/javascript">
            webix.ready(function(){ webix.markup.init(); });
            }
</script>

The problem is that webix changes form’s css.

Is it possible to connect webix to html form without changing form’s style?

Hi,

There’s little form-specific styling indeed. You can try removing the data-view tag from the markup so that htmlform component will not be created.

Hi, Helga,

Yes, I did that, but in this case the code

webix.$$(‘form’)

return “underfined”. So can’t use htmlform’s methods.

Ok, will submit form another way, thank you.