jQWidgets Forums
Forum Replies Created
-
Author
-
September 19, 2019 at 6:04 pm in reply to: Javascript error when using jqxTreeGridComponent in angular with angular prod Javascript error when using jqxTreeGridComponent in angular with angular prod #106811
We are using jqwidgets version 8.0.0
March 27, 2019 at 2:09 pm in reply to: Jqwigets Grid tabbing Focus with angular Jqwigets Grid tabbing Focus with angular #104521Hi Martin,
Thanks for the response.
Our requirements are below
-
We have some other elements on the screen and got two grids.
-
When the user tabs on the last filter column in the filter row. We don’t move between cells for each tab. Only one-time focus should be in the grid and after next tab the focus should go away out of tab
January 25, 2019 at 5:02 pm in reply to: How to assign unique cell in the grid How to assign unique cell in the grid #103686I also see cellclassname propery on grid column available in normal javascript documentation to accept string or function but whereas it is available in Angular to accept string only. Does that mean we can’t use it with function?
October 8, 2018 at 1:50 pm in reply to: npm jqwidgets-framework install & license npm jqwidgets-framework install & license #102317Hi Peter,
Is the licensed version still need to be download through portal. no npm support?
June 27, 2018 at 3:40 pm in reply to: Angular 6 using JQXGrid in the component of sub module Angular 6 using JQXGrid in the component of sub module #100744Hi,
I found the way to resolve the unit test error. By doing below it is resolving the unit test case failure. Do I need to add like this on each every component spec?
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [jqxGridComponent, MyResultsComponent]
})
.compileComponents();
}));It can be fixed by adding “src/app/app.module.ts” to top of the “files” array in tsconfig.json file.
Do I need to remove the “src/app/**/*” and just keep the “src/app/app.module.ts” in the tsconfig.json ?
July 28, 2017 at 1:40 pm in reply to: Jqwidgets Grid taking to a different url on export Jqwidgets Grid taking to a different url on export #95202We are not using the evaluation version. Also at the same time we are not using the dataexport.php on the our server.
Why the grid has to send data to the server to generate a csv when whole data is present on the browser?
July 10, 2017 at 1:33 pm in reply to: Cellformat with date not working if the data has null Cellformat with date not working if the data has null #94799Hi Hristo,
Is there any alternative syntax to use data adapter part from the jquery way?
Because we would like to not to use $ syntax.
var dataAdapter = new $.jqx.dataAdapter(source, { autoBind: true });
Also with this dataAdapter we have to repeat the same column information two times. one in the source and another in columns
July 7, 2017 at 8:48 pm in reply to: Cellformat with date not working if the data has null Cellformat with date not working if the data has null #94769Also, I want to use the unix date format instead of converting it to date object. Is there a way to achieve that
July 7, 2017 at 8:46 pm in reply to: Cellformat with date not working if the data has null Cellformat with date not working if the data has null #94767Plunker link is the below
April 20, 2017 at 6:12 am in reply to: Grid many TypeError with angularjs Grid many TypeError with angularjs #93016Thanks, Dimitar.
Seems with angularjs we can’t use jqx-all.js. It’s better to import individual js files.
After importing individual files the problem got resolved
April 14, 2017 at 6:47 pm in reply to: Grid many TypeError with angularjs Grid many TypeError with angularjs #92938Below is the plunker Example I created with the problem
See the console of the output of the plunker
Plunker Example of jqwidgets with angular ui router
Problematic code in jqxangular.js is below where it adds attribute data-jqx-ng-include and then later again in linkfunction it calls the addTemplate function
function addTemplate(element, replace, attrs, name) { var nodeName = element[0].nodeName.toLowerCase(); var parent = $(element).parent(); var contents = $(element).html(); var ngInclude = parent && parent[0] && parent[0].nodeName.toLowerCase() == "ng-include" ? true : false; if ($(element).parents("[ui-view]").length > 0) ngInclude = true; if (ngInclude && !replace) { $(element).attr('data-jqx-ng-include', true); return; }
`
April 14, 2017 at 3:14 pm in reply to: Grid many TypeError with angularjs Grid many TypeError with angularjs #92926Hi,
It is failing in the addDirective any help
function addDirective(name) { var properties = {}; var linkFunction = function (scope, element, attrs, controllers, transclude) { if ($(element).attr('data-jqx-ng-include')) { $(element).removeAttr(' '); var children = $(element.children()).detach(); element = addTemplate(element, true, attrs, name); element.append(children); $compile(element)(scope); var toParentScope = true; for (var obj in attrs) { if (obj.toString().indexOf('jqx') == -1) { continue; } if (scope[attrs[obj]] != undefined) { toParentScope = false; } <ul> if (attrs[obj].split(".").length > 1) {</ul> var subProperties = attrs[obj].split("."); for (var i = 0; i < subProperties.length; i++) { if (scope[subProperties[i]] != undefined) { toParentScope = false; } } } } if (toParentScope && attrs.jqxSettings) { if (!$parse(attrs.jqxSettings)(scope)) { toParentScope = false; } } if (toParentScope) { scope = scope.$parent; } }
February 27, 2017 at 7:12 pm in reply to: using jqwidgets from bower even having commercial license using jqwidgets from bower even having commercial license #91932Hi,
Any update on this one?
If I have internal bower repo then is there a way to use the licensed jqwidgets?
Regards,
Mohana -
AuthorPosts