Questions tagged [subgrid]
165 questions
1
vote
1 answer
CRM 2011: Find current grid in ribbon JavaScript
This one is driving me mad....
I have several subgrids in a form, all of the same entity and filtered to different fields. A button in the grid's ribbon calls a function that needs to know the exact grid "instance" to make a decision - and this is…

TeaDrivenDev
- 6,591
- 33
- 50
1
vote
1 answer
ExtJS4 - Rendering a subgrid
I'm trying to create a grid inside a grid row when I expand the row using the rowexpander plugin. How do I render the subgrid on the expandbody event?
This is my code so far, it is used as an event handler property when I define my grid panel:
…

MHTri
- 910
- 2
- 10
- 30
1
vote
1 answer
jqgrid subgrids each show all items from the json data
I've been trying to implement a simple subgrid within jqgrid to show line items for an invoice. I finally got the subgrids to populate but each subgrid is showing the same list of line items, which is actually all of the entries in the data set.
I'm…

j_syk
- 6,511
- 2
- 39
- 56
1
vote
1 answer
Dynamically Expand Subgrid in a loop - JQGrid
I have Grid with a subgrid using subGridRowExpanded.
And I want to dynamically expand some rows of the grid so I wrote following
in GridComplete Event of First Grid.
ids is array of row ids of my Grid
for(int i =0; i< ids.length; i++) {
…

Aditya K
- 159
- 1
- 4
- 13
1
vote
1 answer
Why is this jqgrid Subgrid navButtonAdd Custom Button bug for FireFox and IE happening?
Is there a bug with nav buttons (whether on the toppager or the regular pager) when custom buttons are added to a subgrid (using the jqgrid navButtonAdd) but only in FireFox and IE? It seems to work/look fine in Chrome - also the parent grid's…

psdev
- 21
- 3
1
vote
1 answer
With CSS `grid-template-rows: subgrid`, and items spanning rows, how do I get a new 'multi-row' row?
I'm using Firefox – as yet the only browser to support the subgrid – and actually trying to use that subgrid feature:
const D = document,
gen = function*() {
let start = 125;
while (true) {
yield ++start;
}
},
imgNum =…

David Thomas
- 249,100
- 51
- 377
- 410
1
vote
0 answers
CRM 2011 / JScript: Creating/Opening an email reply from an Email ID or a SubGrid
I'm trying to create a button in a form which contains a subgrid of activitypointers, where some of them are emails. This button needs to open the email reply window to the email (The window you get to by opening the email and hitting "Reply") if it…

Emil B. M.
- 11
- 3
1
vote
0 answers
Jqgrid : First row of subgrid wont populate data, although it fetches content successfully
I have a JQgrid that works perfectly fine, it has a subgrid, that works OK, but for some strange reason only the first row of subgrid won't populate the data received from server, although I can see the data returned in firebug.
All other subgrid…

Pawel
- 11
- 2
1
vote
1 answer
jqGrid: subgrid doesn't populate with data
I've got a subgrid that, when you click the "+" sign next to "Cheese", the ajax query fires, and I see the subgrid column names, but the actual data isn't populated into the subgrid. The problem happens regardless of which grid I try to expand, but…

jefflunt
- 33,527
- 7
- 88
- 126
1
vote
2 answers
CSS Grid layout with equal width sections columns and sections with borders/margins
I am looking to have a grid layout (3 columns) of repeating sections. I want the sections to have border and margins as well as have equal width columns throughout all sections. I have gotten most of the way there but am battling between no…

cycle4passion
- 3,081
- 3
- 14
- 28
1
vote
1 answer
JQGrid Subgrid doesn't load if loadonce is set to true
I have a JQGrid with a subgrid (simple one, not as a grid) which worked fine till yesterday. Then I discovered the powerful flag loadonce=true which gives me pagination, search, etc. for free. But since I have enabled loadonce the subgrid stopped…

Tarelli
- 634
- 7
- 18
1
vote
1 answer
How its set with grid-template-columns: [outer-start] 1fr [center-start] 1fr [center-end] 1fr [outer-end]?
I have this code from a code snippet for CSS grid and found it really confusing.
grid-template-columns: [outer-start] 1fr [center-start] 1fr [center-end] 1fr [outer-end];
My doubt is, here will there be 3 columns or 4 columns?

kmg
- 1,195
- 3
- 11
- 14
1
vote
2 answers
Does the concept of sub grids in CSS Grid level 2 work in browsers now?
I started learning about CSS grid layout for a presentation and came across CSS grid level 2 explained in this smashing magazine. From here I learned about the property sub grid. Following point has also been noted in this article.
Note: At the…

kmg
- 1,195
- 3
- 11
- 14
1
vote
1 answer
How to add a custom button on CRM subgrid?
I have two entities in my Dynamics CRM solution. Both are related to each other.
Product -> configurations
Each product can have multiple configurations. I have added a subgrid on product screen.
I need to call a custom html webresource to be able…

VJOY
- 3,752
- 12
- 57
- 90
1
vote
1 answer
How to open create form on click of N:N relationship subgrid + button? currently, it shows lookup search behavior
I have N:N relationship between account and custom address entity and on account form, I have subgrid for custom address. On click of subgrid + button, it shows lookup search. But I need to change that to show create form popup. I know in this…

Sagar
- 137
- 1
- 12