jQWidgets Forums
Forum Replies Created
-
Author
-
November 10, 2017 at 8:54 am in reply to: jqwidget 5.4.0 and DataAdapter jqwidget 5.4.0 and DataAdapter #97231
Thanks for the answer.
Why has it been removed ?
It was really useful to work with strongly-typed dataadapters.November 10, 2017 at 8:33 am in reply to: jqwidget 5.4.0 and DataAdapter jqwidget 5.4.0 and DataAdapter #97229Hello,
Here are the 2 errors I encountered:
- Namespace ‘jqwidgets’ has no exported member ‘DataAdapterOptions’
- Namespace ‘jqwidgets’ has no exported member ‘jqxDataAdapter’.
Also, how can I create DataAdapters, if there’s no longer ‘DataAdapterOptions’ and ‘jqxDataAdapter’ in the framework ?
Thx
November 9, 2017 at 10:53 am in reply to: Bug with jqwidgets.ComboBoxOptions and Size type Bug with jqwidgets.ComboBoxOptions and Size type #97199To add some information about the bug, I think it comes from this code:
createComponent(options?: any): void { if (options) { $.extend(options, this.manageAttributes()); } else { options = this.manageAttributes(); } this.host = $(this.elementRef.nativeElement.firstChild); this.__wireEvents__(); this.widgetObject = jqwidgets.createInstance(this.host, 'jqxComboBox', options); this.__updateRect__(); }
If
options
are set, it is merged with the ones returned bythis.manageAttributes()
.
It is passed directly tojqxComboBox
without convertSize
to anumber
or astring
which are the types supported by the “classic JS framework”.November 9, 2017 at 10:44 am in reply to: Bug with jqwidgets.ComboBoxOptions and Size type Bug with jqwidgets.ComboBoxOptions and Size type #97197Because, I cannot edit anymore my post, the code for setting options is this one:
const options = { autoDropDownHeight: true, checkboxes: false, displayMember: "name", height: { size: 22 }, valueMember: "id", width: { size: "100%" } }; this.myComboBox.createComponent(options);
October 2, 2017 at 7:51 am in reply to: jqxGrid GridColumn missing property jqxGrid GridColumn missing property #96440Ok.
Thanks.
October 2, 2017 at 5:59 am in reply to: jqxGrid GridColumn missing property jqxGrid GridColumn missing property #96436Thanks for your answer.
Is there a website, or a better way than asking in the forum, to make “reports” on the code ?
Thanks again.
In my case, I use angular-cli and this is what I have in “.angular-cli.json”
"styles": [ "../node_modules/bootstrap/dist/css/bootstrap.min.css", "../node_modules/font-awesome/css/font-awesome.min.css", "../node_modules/jqwidgets-framework/jqwidgets/styles/jqx.base.css", "../node_modules/jqwidgets-framework/jqwidgets/styles/jqx.bootstrap.css", "../node_modules/@angular/material/prebuilt-themes/indigo-pink.css", "styles.scss" ], "scripts": [ "../node_modules/jqwidgets-framework/jqwidgets/jqx-all.js" ],
June 27, 2017 at 8:36 am in reply to: jQWidgets and Reactive forms jQWidgets and Reactive forms #94552Do you have any example with ComboBox (or DropdownList) ?
June 23, 2017 at 12:33 pm in reply to: jQWidgets and Reactive forms jQWidgets and Reactive forms #94514Nice.
Thanks for the example.Does this works with Combobox and Dropdownlist ?
Does this works with form validation ?June 16, 2016 at 6:21 am in reply to: jqxGrid filterow checkedlist + filterable issue jqxGrid filterow checkedlist + filterable issue #85146Hi Peter,
Thanks for the answer.
So, to acheive “having a filterable dropdown with checkbox” to filter a column, I have to create a custom filter panel for this column, right ?Thanks for the help.
-
AuthorPosts