jQWidgets Forums
Forum Replies Created
-
Author
-
Hi robf,
Yes, this approach looks correct to me.
Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comHi YTC,
Thank you for reporting this. We will review this behavior for our next release. For now you can reset the properties when the ‘dock’ event is fired:
$(‘#jqxLayout’).on(‘dock’, function (event) {
var args = event.args,
dockPosition = args.position,
dockedItem = args.item;
if(dockedItem.index == 0){
dockedItem.allowPin = false;
dockedItem.allowClose = false;
}
});Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comMay 16, 2024 at 7:39 pm in reply to: jqxScheduler, wrong edit dialog size jqxScheduler, wrong edit dialog size #134770Hi Luna,
Looking at the images, you seem to be using some additional custom CSS. Part of it is probably causing the issue.
Can you please share an example that we can reproduce?Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comMay 16, 2024 at 7:23 pm in reply to: jqxGridComponent exportdata error jqxGridComponent exportdata error #134769Hi dinofratelli,
You can find the same dataexport.php file in the source code build downloaded from the client portal. You should host this on your server and reference it as exportUrl in the method arguments.
Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comMay 15, 2024 at 9:51 pm in reply to: jqxDockingLayout how to reopen closed windows? jqxDockingLayout how to reopen closed windows? #134756Hi,
You can use the “open” method on the window element. Please see the example here – https://jseditor.io/?key=docking-reopen-closed-window
Best Regards,
Ivan Peevski
jQWidgets Support
http://www.jqwidgets.comMay 7, 2024 at 9:05 pm in reply to: "Account suspended" issue when trying to export CSV "Account suspended" issue when trying to export CSV #134710Hi nisaba,
We have stopped this service for security reasons.
You can find the same file as “dataexport.php” in the build available in the client portal. You should upload it on your server and call “exportdata” using your url.Best regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/April 23, 2024 at 11:47 pm in reply to: After applying column sort, unable to remove sorting After applying column sort, unable to remove sorting #134662Hi,
This configuration seems fine to me. Are you using the latest version of jqwidgets?
I created a sandbox with the same properties here – codesandbox Do you notice any differences with your Grid?Best Regards,
Ivan PeevskijQWidgets team
https://www.jqwidgets.comApril 10, 2024 at 9:54 pm in reply to: change search engine position change search engine position #134592Hi pepe,
If I understood correctly, you want the elements in the same order, but moved to the right side of the toolbar?
If this is the case, you can use the CSS below:
.jqx-grid-toolbar{
display: flex;
justify-content: end;
}Best Regards,
Ivan Peevski
jQWidgets Team
https://www.jqwidgets.com/March 27, 2024 at 8:14 pm in reply to: Disable text drag in input Disable text drag in input #134502Hi,
You can prevent the ‘drop’ browser event like this:
$(“#jqxDateTimeInput”).on(‘drop’, function(event) {
event.preventDefault();
});Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comMarch 25, 2024 at 10:58 pm in reply to: Drop down button behaviour in tool bar Drop down button behaviour in tool bar #134497Hi Allan,
In this case, you will need to close it manually. You can attach a “moved” or “moving” event to the jqxWindow and inside the handler close the colorPicker.
Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comHi Steve,
You can set the “min” property of the date input after it has been created. Here is an example:
https://jsfiddle.net/6na78kcz/1/let dateTimeInput = $("#sampleForm .jqx-datetimeinput"); dateTimeInput.jqxDateTimeInput({ min: new Date(2023, 0, 1) });
Best Regards,
Ivan Peevski
jQWidgets TeamHi Ibrahim,
For suck a large amount of data, you can consider using Load on Demand, here is an example – https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxtree/ajaxloading.htm?light
You can also consider using the jqxTreeGrid widget.
Best Regards,
Ivan Peevski
jQWidgets Support
http://www.jqwidgets.comFebruary 7, 2024 at 10:41 pm in reply to: Differentiate between selection events initiated by user vs code Differentiate between selection events initiated by user vs code #134313Hi Alastair,
The jqxTree ‘select’ event has an argument event.args.type which tells you if the selection was made with a “mouse”, “keyboard” or programatically(null).
If the selection type is programatic, then don’t trigger the selection of the other tree.
I think this should avoid the cyclical issue if I understood your problem correctly.Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comFebruary 7, 2024 at 10:22 pm in reply to: Some issues with using 'jqxCheckBoxGroup'" Some issues with using 'jqxCheckBoxGroup'" #134312Hi inee814,
Thank you for the detailed feedback! I have opened a work item about the issues and we will work on resolving them for our next release.
Best Regards,
Ivan Peevski
jQWidgets Team
http://www.jqwidgets.comHi Steve,
It’s just a PHP page that handles the POST request like this: $_POST[“textBoxValue”] for all fields
Best Regards,
Ivan Peevski
jQWidgets Support
http://www.jqwidgets.com -
AuthorPosts