jQWidgets Forums
Forum Replies Created
-
Author
-
November 21, 2014 at 5:59 am in reply to: How to use Angular directives inside isolated scope (jqx-Docking) How to use Angular directives inside isolated scope (jqx-Docking) #63113
Hi Peter,
Yes, I know the use of Jqx-data, If $scope variables means we can use jqx-data, But its directive, I want to use this directive inside docking… How I can pass directive in jqx-data.? If I use this directive inside docking, The directive window is opening automatically but I set jqx-auto-open=”false” in directive.
November 19, 2014 at 2:24 pm in reply to: How to remove promptChar in NumberInput How to remove promptChar in NumberInput #63021Hi Nadezhda,
Thank you, I want a numberInput with “groupSeparator” without “promptChar” symbols
November 12, 2014 at 11:25 am in reply to: How to load a tab content when tabclick. How to load a tab content when tabclick. #62569Hi Peter,
A Page contains, JqxDocking,buttons and div with ng-repeat, If I tried like LoadPage() method, the contents are not displaying properly… even <jqx-button>Button</jqx-button> is not working.
November 7, 2014 at 11:34 am in reply to: Why Controls is not working when using getContent in jqxTabs. Why Controls is not working when using getContent in jqxTabs. #62378Hi Peter,
Thanks for your reply. I want to take all the content from first Tab and add that content to second tab when I click Add new. how to achieve this?
November 6, 2014 at 4:06 am in reply to: How to pass a values from window to controller? How to pass a values from window to controller? #62249Hi Peter,
Thanks for you reply. This query is related to jqxWindow so only I posted in Window Forums. Actually jqx-data is used for accessing the datas from controller to Isolated scope(window’s scope). Now I want to pass the input text values from jqxwindow to controller when I click a button in jqxWindow.
November 3, 2014 at 6:00 am in reply to: In Tab rename close button is not showing? In Tab rename close button is not showing? #62018Hi Peter,
Its working fine but after change the name of the Tab, TabCloseButton is not showing.
October 6, 2014 at 10:27 am in reply to: How to use two controllers? How to use two controllers? #60705Hi peter,
I tried this same example . But Grid is not creating.
September 30, 2014 at 10:32 am in reply to: How to get $scope inside a How to get $scope inside a #60354Hi peter,
I got the solution. Thank you. Now I learned “How to bin events”.
Thank you.
September 30, 2014 at 10:13 am in reply to: How to get $scope inside a How to get $scope inside a #60351But Now also Its not working,
<!DOCTYPE html> <html ng-app="ForexOrderBookApp" lang="en"> <head> <meta charset="ISO-8859-1"> <title>Intellect GoTx FX Portal</title> <link rel="stylesheet" href="../CSS/jqx.base.css" type="text/css" /> <link rel="stylesheet" href="../CSS/Style.css" type="text/css" /> <script src="../CommonFiles/import.js"></script> <script type="text/javascript"> var ForexOrderBookApp = angular .module("ForexOrderBookApp", [ "jqwidgets" ]); ForexOrderBookApp.controller("ForexOrderBookController", function($scope) { $scope.$on('jqxMenuCreated', function() { $scope.menuSettings.apply('minimize'); }); $scope.menuSettings = { width : '100%', height : '32px', autoSizeMainItems : true } $scope.$on('itemclick', function(event) { alert($(event.target).text()); }) }); </script> </head> <body style="background: #EEE;"> <div ng-controller="ForexOrderBookController"> <div class="minimizedBtn" style="float: left; margin: 0; padding: 0; margin-left: 100px;"> <jqx-menu jqx-settings="menuSettings" style="visibility: visible; width: 12px !important; height: 15px !important; background: transparent !important; border: none !important;"> <ul id="WatchType"> <li><a href="#">Advanced</a></li> <li><a href="#">Ladder</a></li> </ul> </jqx-menu> </div> </body> </html>
September 30, 2014 at 10:02 am in reply to: How to get $scope inside a How to get $scope inside a #60349$scope.$on('itemclick', function() { alert($(event.target).text()); })
Is this correct for JqxMenu Itemclick in angularjs?
September 30, 2014 at 9:55 am in reply to: How to get $scope inside a How to get $scope inside a #60347Hi Peter,
Please provide the samples in angularjs. I am completly implementing in Angularjs. and also $scope variables not printing inside jqxDocking. How to solve this.
September 30, 2014 at 9:29 am in reply to: Can we set Two contents in JqxDocking Can we set Two contents in JqxDocking #60342Hi Dimitar,
Yes, Exactly same, But want a sample in Angularjs.
Here I can say, ` $(“#window1”).on(“collapse”, function () {
$(‘#window1’).jqxWindow(‘setContent’, ‘New content’);
});`but how to use this code in angularjs.
September 30, 2014 at 9:12 am in reply to: How to get $scope inside a How to get $scope inside a #60340Here I want to call, “ChangeWatchType()” function in anchor tag. But $scope is not getting inside docking window. how to get that globally.?
September 30, 2014 at 7:01 am in reply to: Sample for Minimized menu in Angularjs Sample for Minimized menu in Angularjs #60313Hi Peter,
Thanks a lot. Here you mentioned,
$scope.$on('jqxMenuCreated', function () { })
Where I can see this “jqxMenuCreated” kind of keywords, can you give some url s for this?September 30, 2014 at 6:48 am in reply to: Sample for Minimized menu in Angularjs Sample for Minimized menu in Angularjs #60308Hi peter,
Thank you
-
AuthorPosts