jQWidgets Forums

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 30 total)
  • Author
    Posts
  • in reply to: jqxSlider problem jqxSlider problem #92969

    Ankit Shah
    Participant

    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.

    in reply to: jqxSlider problem jqxSlider problem #92966

    Ankit Shah
    Participant

    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.

    in reply to: jqxSlider problem jqxSlider problem #92947

    Ankit Shah
    Participant

    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 Shah

    in reply to: Unselecting event Unselecting event #89250

    Ankit Shah
    Participant

    Hello 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.
    –Ankit


    Ankit Shah
    Participant

    Hello JQWidget team,

    Do we have any solution to this?

    Anticipating quick reply..

    Thanks,

    in reply to: ng-repeat with the expander ng-repeat with the expander #85750

    Ankit Shah
    Participant

    hello todd.cochran,

    If you can provide your solution in the thread, that would be helpful to others.

    Thanks in advance,


    Ankit Shah
    Participant

    ugh…I should learn to post…

    Here is updated Fiddle


    Ankit Shah
    Participant

    Please look at this updated

    in reply to: Grid cell checkbox state Grid cell checkbox state #85284

    Ankit Shah
    Participant

    Hello 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,


    Ankit Shah
    Participant

    Hi 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,


    Ankit Shah
    Participant

    Hi 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,


    Ankit Shah
    Participant

    Hello 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


    Ankit Shah
    Participant

    Hello Support team,

    Do we have any updates on this?

    Thanks,
    Ankit Shah


    Ankit Shah
    Participant

    Hello 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


    Ankit Shah
    Participant

    Hi 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

Viewing 15 posts - 1 through 15 (of 30 total)