Forum Replies Created
-
Author
-
May 20, 2021 at 1:23 am in reply to: Dropdownlist add empty item on renderer Dropdownlist add empty item on renderer #120159
Hi Hristo
How can i achieve this if my data source is a ‘url’. Basically the url will be the SQL to do Select statement to retrieve the records.
var url = “sampledata/customers.php”;
// prepare the data
var source =
{
datatype: “json”,
datafields: [
{ name: ‘firstname’ },
{ name: ‘lastname’ },
],
root: “entry”,
record: “content”,
id: ‘CustomerID’,
url: url
};
var dataAdapter = new $.jqx.dataAdapter(source, { async: false });Will appreciate if you have a workaround?
March 8, 2021 at 3:50 am in reply to: jqxgrid cardview cellsrenderer button missing. jqxgrid cardview cellsrenderer button missing. #114820Hi Peter,
There seems to be a issue with the cardview and pageable enabled.
Notice on page 1, if you scroll all the way down you can see part of the card created but you cannot scroll more since the page is set to 20 records. Thats a bit odd, and I understand you can just go to the next page.Also another issue is that whenever you scroll, i have noticed the cards changing position randomly whenever its close to the end of the scroll or switching pages (go to page 2 or 3 and scroll down). Seems like the pagination and cards are not consistent with each other. Sorry just pointing out things i noticed.
Check my example below:
http://jsfiddle.net/bwt1nyu5/1/March 7, 2021 at 5:04 pm in reply to: jqxgrid cardview cellsrenderer button missing. jqxgrid cardview cellsrenderer button missing. #114816Hi Peter. Do you have example? I couldn’t find any demo for the custom values template for the card view? Because i tried with my example from the above post and didn’t seem to work. Assuming the cellsrenderer function is same as the old one.
Thanks
February 25, 2021 at 2:59 pm in reply to: jqxgrid cardview cellsrenderer button missing. jqxgrid cardview cellsrenderer button missing. #114681Hi Hristo, will the user ever have ability in future or is there a workaround for adding custom buttons in the cards? also what about row selection (singlerow), which performs as card selection (singlecard)?
November 15, 2020 at 11:14 pm in reply to: DataGrid Card View mode noticed on Roadmap DataGrid Card View mode noticed on Roadmap #113613Hey also one more thing to note. Please make sure to consider how ‘Card’ layout will look like. if jqxgrid has ‘showfilterrow’, Column Groups, and pagination enabled.
November 9, 2020 at 2:40 am in reply to: jqxtreegrid grouping issue with cellsRenderer jqxtreegrid grouping issue with cellsRenderer #113534Also another question, is there a workaround for changing the background color of the grouping headers?
October 20, 2020 at 4:30 am in reply to: jqxgrid group renderer header background color width issue jqxgrid group renderer header background color width issue #113386Hi Hristo.
I would prefer if possible to add a fix for this in future. Because this could come across as a issue. Due to the fact that we have the group renderer function to customize the group header.
Thanks. I will keep trying to see a CSS approach.
October 16, 2020 at 4:53 pm in reply to: jqxgrid group renderer header background color width issue jqxgrid group renderer header background color width issue #113362Hi Hristo.
When i turned on the selectionmode to ‘checkbox’. using your css, it causes issues with the other columns and checkbox column as well.
Here is the jsfiddle:
http://jsfiddle.net/x9ncd7e6/1/September 1, 2020 at 2:53 pm in reply to: Rowdetails custom height based on nested grid height Rowdetails custom height based on nested grid height #112903Anyway to make the grid to refresh so that we don’t see the line issue when viewing the row details while filtering or sorting.
August 19, 2020 at 1:23 am in reply to: Rowdetails custom height based on nested grid height Rowdetails custom height based on nested grid height #112728Sorry to reach out again, but i was checking if you had chance to review my previous post that i am facing issue still. Thanks for helping with this.
August 6, 2020 at 10:31 pm in reply to: Rowdetails custom height based on nested grid height Rowdetails custom height based on nested grid height #112607Hi Martin,
I noticed a issue with the dynamic rowdetails logic
So when i turned on the showfilterrow and sortable, then the dynamic rowdetails are not working anymore and causing the grid to freeze and act strange.
Reproduce:
Filter for ‘Pizzastore’, and then do row expand. You will notice that the dynamic height don’t work anymore.
Similar issue when doing sorting and clicking expand.I would appreciate if you have a workaround for this.
Here is example:
http://jsfiddle.net/sgrto0eq/1/May 5, 2020 at 1:34 pm in reply to: Grid everpresentrow validation tooltip Grid everpresentrow validation tooltip #111917Hi Hristo,
I would appreciate if you could provide example for this coordinates appproach your talking about?
April 29, 2020 at 3:03 pm in reply to: Treegrid prevent sort on column renderer Treegrid prevent sort on column renderer #111857Hi Hristo
Any other way i can add the custom filter row besides adding as a renderer? because i tried to do the approach with remove sort on click of input but that doesn’t work as expected. Other case is that lets say i clicked on the a column sort and i then clicked a filter input box, this would remove my current sort. Which that way would not work either. The sort and filter should work independently of each other.
I thought of adding as a toolbar, but then that doesn’t function like a column.
Is there anything we can do with this javascript mention ‘event.stopPropagation();’ maybe on the sort event from being triggered if clicked on the filter input box?
Here is my jsfiddle:
https://jseditor.io/?key=79a9c0b98a2911ea98fa00224d6bfcd5This filter row feature for the jqxtreegrid has been highly requested feature. I really hope jqwidgets team implements this soon.
March 24, 2020 at 3:23 am in reply to: Dropdownbutton jqxtreegrid collapse on rowcheck Dropdownbutton jqxtreegrid collapse on rowcheck #111522Hi Hristo,
Sorry i forgot to ask one other thing that is how can i return only the parent element value of FirstName when doing rowCheck.
So if i select the parent element it should setcontent with parent element value. Example: Andrew, and not any children.
If i select any children elements, it should setcontent with the child element value only. Example: Gary, Tanner, and not any parent.March 23, 2020 at 5:19 pm in reply to: Dropdownbutton jqxtreegrid collapse on rowcheck Dropdownbutton jqxtreegrid collapse on rowcheck #111505Never mind i got it. Thanks Hristo
-
AuthorPosts