jQWidgets Forums
Forum Replies Created
-
Author
-
Hi Peter,
Yes, I agree on that. But issue I want to point is “sizeChanged()” which appears in the error could not be found anywhere within all jqx*.js files.Hi Peter,
Below is the code that reproduce the issue.
HTML<!DOCTYPE html> <HTML ng-app="demoApp"> <HEAD> </HEAD> <BODY> <div ng-controller="demoController"> <jqx-button id="jqxButton" jqx-settings="buttonSettings" >Click </jqx-button> <jqx-window id="expressionVisualizerWindow" jqx-create="createExpressionVisualizerWindow" jqx-settings="WindowSettings"> <div id="WindowHeader"></div> <div id="WindowContent"> <jqx-slider jqx-settings="widthSliderSettings" ng-model='value' jqx-create='createWidget'></jqx-slider> </div> </jqx-window> </div> </BODY> </HTML>
JavaScript:
var demoApp = angular.module("demoApp", ["jqwidgets"]); demoApp.controller("demoController", function ($scope) { $scope.value = 20; $scope.createWidget = false; $scope.createExpressionVisualizerWindow = false; initializeButtonSettings(); initializeExpressionVisualizerWindowSettings(); initializeSliderSettings(); function initializeExpressionVisualizerWindowSettings() { // Visualizer Expression Window $scope.WindowSettings = { // maxHeight: '95%', // maxWidth: '95%', width: '300px', height: '200px', isModal: false, resizable: false, autoOpen: false, title: 'Expression Parse Tree', initContent: function(){ } }; $scope.createExpressionVisualizerWindow = true; } function initializeSliderSettings(){ $scope.widthSliderSettings = { tooltip: true, mode: 'fixed', width: '220px', height: '25px', min: 10, max: 50, step: 5, ticksPosition: 'bottom', ticksFrequency: 5, value: $scope.value, }; $scope.createWidget = true; } function initializeButtonSettings(){ $scope.buttonSettings = { width: '200px', click: function(event){ $scope.WindowSettings.apply('open'); } }; } });
On F12- Developer tools, we will get error as mentioned by Andrea.p in initial post.
If we move “initializeSliderSettings()” inside initContent of window, then issue is resolving.
My question was more towards issue we are getting in Console panel of F12 developers tools. I searched through all the jqWidget js files and not able to find the location where the “sizeChanged” function is defined.Hi JQWidget team,
I am facing the same problem when implementing with Angular 1.6 and JQWidget 4.5.1.
This lead us to correct, change and test every screen where Slider control is used, which was working with previous versions of JQWidgets.
Issue is resolved while creating the sliders after we create its container. However, as a part of diagnosis, I searched for the “sizeChanged” function and I didn’t find it anywhere in all jqx.*.js files. _helpers seems to be part of JQXHelpers defined in jqx.Core.js file, but I cannot find this function in jqxCore file.
Can you please let me know how and why this function exists, I mean usage of this function during creation of control? Also, is there any plan to provide a patch/hotfix to the problem?
Thanks,
–Ankit ShahHello Dimitar / JQWidget team,
Have we resolved this issue? We have same situation and on Selecting event we need to process something and on unselecting we need to do some other things. In this scenario we UnSeleting is still not working.
We are using jQWidget version 3.8.2 and for some reason we cannot update the version.
Thanks in advance.
–AnkitJuly 16, 2016 at 4:43 am in reply to: Button with image and text not firing click event Button with image and text not firing click event #85797Hello JQWidget team,
Do we have any solution to this?
Anticipating quick reply..
Thanks,
July 14, 2016 at 11:04 am in reply to: ng-repeat with the expander ng-repeat with the expander #85750hello todd.cochran,
If you can provide your solution in the thread, that would be helpful to others.
Thanks in advance,
July 14, 2016 at 8:55 am in reply to: Button with image and text not firing click event Button with image and text not firing click event #85748ugh…I should learn to post…
Here is updated Fiddle
July 14, 2016 at 8:54 am in reply to: Button with image and text not firing click event Button with image and text not firing click event #85747Hello Peter,
Thank you for your quick response.
Our automation script act directly on client browser and does not have access to underlying functionality of jQWidgets/jQuery.
In that case do we have any other workaround using javascript? OR any other property that reveals the cell state?
Thanks again,
March 2, 2016 at 9:23 am in reply to: combo-box editor opening on double click combo-box editor opening on double click #82024Hi Akash,
You can take a workaround by calling combobox’s open event in initeditor. This way even user tabs to the column having combo-box as editor, combo-box will open itself.Give it a try.
Thanks,
August 10, 2015 at 4:38 am in reply to: Cascading dropdowns columns of grid with different source Cascading dropdowns columns of grid with different source #74652Hi Ivailo Ivanov,
Thank you for your suggestion. That demo was useful to me, however our implementation asks for Key-value pair implementation of dropdown grid column.
So, when grid renders with existing data, it should show-up with respective “value” instead of “key” for key-value dropdown column.I would be nice if you can provide a full demo / workable code of grid with,
1) Cascading drop-down with Key-value pair where selecting a first column value triggers a request to bring data for second value.
2) Render grid with saved data using above grid implementation.Thanks,
July 31, 2015 at 12:25 pm in reply to: jqx Angular framework and UI-Router not working jqx Angular framework and UI-Router not working #74373Hello Peter,
Thank you for your quick response.
We need to make a decision quickly on the direction we are going to take with our development.
Do you feel that there will be a good probability that it will be fixed in 3.8.2 release?
— Ankit
June 29, 2015 at 4:43 am in reply to: Jqx-Listbox drag and drop issues warnings when disabled Jqx-Listbox drag and drop issues warnings when disabled #73110Hello Support team,
Do we have any updates on this?
Thanks,
Ankit ShahJune 18, 2015 at 4:13 am in reply to: Jqx-Listbox drag and drop issues warnings when disabled Jqx-Listbox drag and drop issues warnings when disabled #72658Hello Peter,
Did you look into JSBin I provided in previous answer?
If not, can you please review it and let me know any solution to this?
Anticipating your reply soon
Thanks,Ankit Shah
June 11, 2015 at 10:23 am in reply to: Jqx-Listbox drag and drop issues warnings when disabled Jqx-Listbox drag and drop issues warnings when disabled #72320Hi Peter,
My intention was not to show how to use browser’s consol and I am sorry if you feel so. I just wanted to show how I am seeing the issue.
For demo purpose, I created JSBin with the code you suggested.
Please follow below steps to replicate the issue. Also, I noticed that after page is loaded, and once you drag an item from list box and after that you disable the list box (via disable button), the issue is not occurring.
Please have a look at this content and suggest any solution to this.
Thanks,
Ankit Shah -
AuthorPosts