Integrate JQuery steps with ZK framework -
i trying integrate jquery plugin "steps" zk framework. using textboxes , data binding so:
<textbox value="@bind(vm.model.prop.propofprop)/>"
i use jquery steps so:
$("#form").steps({ bodytag: "fieldset", transitioneffect: "slideleft", onfinishing : function(event,currentindex) { $('.z-button')[0].click(); return true; } }); what have been trying trigger click event on zk button , event fired data bindings ignored. appears "steps" plugin sends form in way zk doesn't like.
i have tried exact same form without plugin , works.
how possible if possible ?
i looked information how plugin sends forms , if has influence on inputs without success.
jquery steps plugin can't integrated zk in current state due influance has on inputs , formdata itself.if need have change plugin code or simulate manually javascript on client side did because easier. can find code here ! my manual solution!
Comments
Post a Comment