You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should be appended to dbType like for htmlType and htmlValue
I can make a PR to:
Make this field .txtDbValue always visible
Add in form submit:
// Append db valuevardbType=$this.find('.txtdbType').val();// if not empty appendif($this.find('.dbValue').val())dbType=dbType+':'+$this.find('.dbValue').val()// ...fieldArr.push({name: $this.find('.txtFieldName').val(),dbType: dbType,// here dbTypehtmlType: htmlValue,//...
And I would like to know about relation for each field as in your fields_sample.json there is for example:
There is a reason why the txtDbValue is always hidden?
This https://github.com/InfyOmLabs/generator-builder/blob/master/views/field-template.blade.php#L29
Should be appended to dbType like for htmlType and htmlValue
I can make a PR to:
Make this field .txtDbValue always visible
Add in form submit:
And I would like to know about relation for each field as in your fields_sample.json there is for example:
Right now seem not possible to add relation like this for each field, or am I missing something?
The text was updated successfully, but these errors were encountered: