jQWidgets Forums
Forum Replies Created
-
Author
-
Any news?
Will there be a fix in the near future?
We are waiting more than a year…Hi,
First test with the version 6.1.0 and both problems still exists:
My blockquotes aren’t working this is copied from my first post:
1:
Pasting(STRG+V) numbers from a file like excel into the numberinputs doesn’t work.
Pasting into normal inputs works correct.
It will work in IE, but not in firefox and chrome which are used from most of our customers.
http://jsfiddle.net/85f0zqsw/ <– Try to paste a number from a windows-editor.2:
The localization setting doesn’t work when values will be copied from one numberinput and pasted to another numberinput.
Our localization setting is the following:
decimalseparator = “,” and thousandsseparator = “.”;
If we copy the number “25,45000” from one numberinput to another numberinput the new value is “2545000,00000”.
http://jsfiddle.net/85f0zqsw/———————— End first post
1:
Copy from excel is still not supported. Why should a standard behavior be blocked?
For example our customers work with different items and every time they have to type it instead of copying from excel.2:
It work with decimalSeparator:’,’.
But the combination of decimalSeparator:’,’ and groupSeparator:’.’ does not work.
Here is the new fiddle:
http://jsfiddle.net/dt5m9w1o/June 13, 2018 at 8:43 am in reply to: Wrong behaviour with negative numbers Wrong behaviour with negative numbers #100587Any updates so far?
June 13, 2018 at 8:42 am in reply to: After Remove/Add Tools: paste adds multiple times After Remove/Add Tools: paste adds multiple times #100586Any updates so far?
Any updates so far?
March 16, 2018 at 8:16 am in reply to: Window resize width not working Window resize width not working #99259Hi EricK,
we solved it by setting the Width and Height property instead of using the resize function:
$(“#jqxwindow”).jqxWindow({ width: 100, height: 100})March 13, 2018 at 1:45 pm in reply to: Wrong behaviour with negative numbers Wrong behaviour with negative numbers #99184Hello!
We have the same problem, should it be solved meanwhile (with input mode “simple mode”)?
It’s not possible to change the inputMode in our system. Changing the inputMode cannot be a solution, it’s just a workaround.Best regards
GatSeptember 19, 2017 at 6:22 am in reply to: Weird behaviour with filter Weird behaviour with filter #96115Thanks Peter, works perfect!
Best Regards
Fixed with Version 5.2.0
Thanks!Best Regards
August 16, 2017 at 2:35 pm in reply to: jqxcheckbox event.args.type is alway undefined jqxcheckbox event.args.type is alway undefined #95505The link was deleted and I can’t edit my post:
The link to the topic is:
http://www.jqwidgets.com/community/topic/jqxcheckbox-event-args-type-is-alway-undefined/Hi ivailo,
I think you misunderstood our problem.
The close-button itself works right.
We just want to use the hide-feature on the collapse-button.
The Close-Button should always close the window.We are catching the events (‘close’ and ‘collapse’) like:
$('#newWindow'+id).on('close', function(event) { var item = $("#jqxListBox").jqxListBox('getItemByValue', id); $("#jqxListBox").jqxListBox('removeAt', item.index); } }); $('#newWindow'+id).on('collapse', function(event) { $('#newWindow'+id).jqxWindow('hide'); });
A hidden window can be displayed again after clicking on a listBox entry:
$('#jqxListBox').on('select', function (event) { var args = event.args; if (args) { var index = args.index; var item = args.item; var label = item.label; var value = item.value; if (!$('#'+label).jqxWindow('isOpen')) { $('#'+label).jqxWindow('expand'); //Without expand the Window is collapsed $('#'+label).jqxWindow('open'); //Must be after expand, otherwise it doesn't work } } });
Or is their away to prevent the collapse-Button from collapsing the window? It only should hide it, or is their a hide-button?
We need both features ‘hide’ and ‘close’ on different buttons.
Best Regards
Hi Ivailo,
I just tried you example, still the same behaviour. The link is the same as mine.
Best Regards
May 19, 2016 at 8:31 am in reply to: DockingLayout Adding / Removing Documents DockingLayout Adding / Removing Documents #84482Hello Dimitar
Many thanks for the prompt reply.
Best Regards
Gat -
AuthorPosts