jQWidgets Forums
Forum Replies Created
-
Author
-
August 27, 2015 at 11:34 am in reply to: Change input source dynamically Change input source dynamically #75207
Hello Karen,
You should take a look at this demo for cascading comboboxes:
I know the demo is for comboboxes but I think you can quite easily achieve the same result with jqxinput as well.
Also depending on your case, you may decide that comboboxes are more suitable for what you want to do.Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 27, 2015 at 7:05 am in reply to: how to asynronously load data form mysql database to a combobox how to asynronously load data form mysql database to a combobox #75202Hello aeroniva,
You may want to look at the jqxComboBox demo for Cascading Comboboxes.
It is quite similar to what you want to achieve, so I hope it works for you.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 21, 2015 at 2:59 pm in reply to: Ready method is called before cellsrenderer Ready method is called before cellsrenderer #75057Hello Bharath,
Take a look at this fiddle:
As you can see in this fiddle, the ready function is called after the cellsrenderer.
Though please note that ready function is called after the initial rendering of the grid, while cellsrenderer is called every time a cell needs to be rendered.For more information on cellsrenderer you can reffer to the grid cellsrendering documentation
Also take a look at this topic, as it seems similar to your question.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 21, 2015 at 6:43 am in reply to: Chart does not show when use rangeSelector Chart does not show when use rangeSelector #75038Yes, this is why I said it is depending on your data. It would work only if your ROUTE_NM values are sequential, as this is how linear chart works.
I am sorry that I can not provide another workaround at this time.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 20, 2015 at 7:17 am in reply to: Chart does not show when use rangeSelector Chart does not show when use rangeSelector #74974Thank you for pointing this issue to us.
We will investigate why this happens.
Meanwhile depending on your data, you can try using type: ‘linear’ for the xAxis instead of basic, and see if that type of chart works for you.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 19, 2015 at 9:51 am in reply to: Chart does not show when use rangeSelector Chart does not show when use rangeSelector #74956Hello vv9863,
Can you please provide a fiddle with an example of the issue that you are having?
Or at least provide the data that you try to use to populate the grid.Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 18, 2015 at 8:03 am in reply to: autoresizecolumns bug if header is longest autoresizecolumns bug if header is longest #74918Hello EdToro,
Thank you for pointing this issue to us.
We will investigate why this happens.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 17, 2015 at 2:13 pm in reply to: Cant get my filter to work. Cant get my filter to work. #74878Yes it is possible.
If you don’t want your users to apply filters to your grid at all you can remove the filterable: true parameter from your grid (or set it to false),
or if you want to lock only that specific row, you can specify filterable: false for that specific row.
I have updated the fiddle.Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 17, 2015 at 1:40 pm in reply to: Cant get my filter to work. Cant get my filter to work. #74876Hi Programmerswe,
Here is an example of how it works:
https://www.jseditor.io/?key=jqxgrid-filter-exampleAs you can see the users with type = ‘test’ get properly filtered.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comAugust 17, 2015 at 8:48 am in reply to: Cant get my filter to work. Cant get my filter to work. #74861Hello Programmerswe,
What filter does is that it returns the results that match the conditions of the filter.
So if you want to remove results containing “test” you need to use:var filtercondition = "does_not_contain";
You can find all possible filtering conditions in the API Reference for the addfilter function.
Best Regards,
VladimirjQWidgets Team
http://www.jqwidgets.comHi rrodini,
What you need to do is (re)set the css property white-space for the button.
#cr_game { white-space: normal; }
Best Regards,
VladimirjQWidgets team
http://www.jqwidgets.com/Hello Rajesh,
What you can do is the following, you can supply the grid with a new array with the reduced amount of columns and refresh it.
Example:var newColumns = [ { text: 'Foo', datafield: 'foo' }, { text: 'Bar', datafield: 'bar' } ] $("#jqxgrid").jqxGrid({columns: newColumns}); $("#jqxgrid").jqxGrid('render');
Here is an example with a button removing the first column:
https://www.jseditor.io/?key=delete-columnBest Regards,
VladimirjQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts