jQWidgets Forums
Forum Replies Created
-
Author
-
June 29, 2022 at 8:28 am in reply to: Column title renderer angular Column title renderer angular #121939
Hi,
You can use rendered property. It returns the column header element and you can modify it.
rendered?: (columnHeaderElement?: Any) => Void;
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/Hi,
Probably the input is not set to a date picker, try to set
type="date"
to the input element. Let me know what happened.
Also, you can send me screenshots, it would be easier for me to understand the problem.
If you have any other questions, please do not hesitate to contact us again.Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/Hi,
Try to pass the GetCourseList() to the localdata property of source when you are initialising the source.
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/June 28, 2022 at 9:43 am in reply to: jqxFileUpload additional parameter jqxFileUpload additional parameter #121928Hi Joko,
There is no onBeforeUpload event, but you can set the additional parameters in the uploadURL like this:
uploadUrl: 'upload-file.php?guid=1111&otherParam=abc'
Then you can get them using the $_GET array in PHPOur new Smart FileUpload component also allows you to change the headers of the file upload’s XHR request. : https://www.htmlelements.com/demos/fileupload/overview/
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comHi Joko,
What are you trying to validate exactly in the Grid?
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 27, 2022 at 5:57 pm in reply to: Integrated form with jqxCombobox Integrated form with jqxCombobox #121921Hi Joko,
You can use jqxDropDownList in the form. When choosing an option you can type your search term, the dropdown will select an option if there is a match.
Please have a look at this demo:
https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxform/index.htm#demos/jqxform/defaultfunctionality.htmIf you have any other questions, please do not hesitate to contact us again
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 27, 2022 at 5:44 pm in reply to: Cannot expand the last row after grouping Cannot expand the last row after grouping #121920Hi,
Happy to hear that! Please feel free to contact me if you need any further information.
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comHi,
The problem is that you are not binding the data. Please look at this example.
After callingthis.state.source.localdata = data
you should update the bound data via theupdatebounddata
method
Here is an example:
https://www.jqwidgets.com/react/react-grid/index.htm#https://www.jqwidgets.com/react/react-grid/react-grid-refreshdata.htmI hope this makes it more clear!
If you have any other questions, please do not hesitate to contact us again.Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/June 27, 2022 at 1:39 pm in reply to: serialize jqxNumberInput error serialize jqxNumberInput error #121918Hi Joko,
Please give me a code example so I can help you and get more familiar with the problem.
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 27, 2022 at 1:16 pm in reply to: TextArea in jqxWindow : scrollbar appears if length is 100% TextArea in jqxWindow : scrollbar appears if length is 100% #121917Hi, fabriceb
Please have a look at the styling section:
https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtextarea/jquery-textarea-styling-and-appearance.htm?search=To apply the style for all text areas you can use the class
jqx-text-area
:.jqx-text-area { box-sizing: border-box !important; }
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 24, 2022 at 12:35 pm in reply to: Can you set the end of the bar to be rounded like in this picture? Can you set the end of the bar to be rounded like in this picture? #121909Hi,
Unfortunately, we do not support that feature.
If you have any other questions, please do not hesitate to contact us again.
Best Regards,
Svetoslav BorislavovjQWidgets team
https://www.jqwidgets.comJune 24, 2022 at 12:11 pm in reply to: TextArea in jqxWindow : scrollbar appears if length is 100% TextArea in jqxWindow : scrollbar appears if length is 100% #121907Hi fabriceb,
In order to fix that please set the box-sizing of
<textarea id="jqxTextArea1"></textarea>
element tobox-sizing: border-box
.
Here is an example:#jqxTextArea1 { box-sizing: border-box }
Please feel free to contact us if you have further questions!
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 23, 2022 at 2:02 pm in reply to: Cannot expand the last row after grouping Cannot expand the last row after grouping #121903Hi,
The problem comes from
autorowheight: true
. We do not support this combination.
However, we do support that here: https://www.htmlelements.com/demos/grid/overview.
As a workaround, you can remove the property or set it to falseautorowheight: false
.
Or you can upgrade to our new product Smart UI: https://www.htmlelements.comBest regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 23, 2022 at 1:52 pm in reply to: JqxTextArea automatic height resize JqxTextArea automatic height resize #121902Hi,
Hi! Have a look at the example in Smart HTML Elements: https://www.htmlelements.com/demos/multilinetextbox/overview
the element has got an auto-expand property.
Here is an example:<smart-multiline-text-box auto-expand placeholder="smart Text Area" ></smart-multiline-text-box> <script> const multilinetextbox = document.querySelector('smart-multiline-text-box'); multilinetextbox.autoExpand = true; </script>
Best Regards,
Svetoslav BorislavovjQWidgets Team
http://www.jqwidgets.comJune 23, 2022 at 1:11 pm in reply to: Can I delete the Y axis of VALUEAXIS Can I delete the Y axis of VALUEAXIS #121901Hi,
you can set the visible property of the line object to false:
valueAxis: {
…,
line: {
visible: false
}
}If you have any other questions, please do not hesitate to contact us again.
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/ -
AuthorPosts