Questions tagged [subgrid]

165 questions
0
votes
0 answers

JQGrid php 4.4.0 adding custom rows and table in view model

I have been working on this for past three days but I still can't make this to do. I need to add more rows or more details in view model than what I'm showing on the table. and the view model does have a subgrid too. I'm trying hard but I cant get…
gana
  • 11
  • 4
0
votes
1 answer

Filter subgrid lookup in dynamic crm 2013

After I click the "+" button on the subgrid in an entity form , the dynamic crm open a lookup field in the subgrid. Is anyone know how can i filter this lookup field ?
Aviad
  • 1
  • 4
0
votes
1 answer

MS CRM - Focus on SubGrig

I want to run a JS on a subgrid upon OnChange event of another field on the form. To my understanding the best method is to cause focus on the subgrid prior to launching the JS on the subgrid. So my inquiry is, what is the correct piece of script to…
Avsrot
  • 33
  • 5
0
votes
1 answer

MSCRM2011 How retrieve Subgrid Data

how to retrive all rows from SUBGRID using Jscript i have one entity "E-mail" which contain one subgrid "attachmentsGrid" now i need to retrive all the attachment size and total it up then show in a field.... Please help
cyeong
  • 1
0
votes
0 answers

Adding subgrid results in empty box on form

I'm trying to add a subgrid to the Contact form to show related opportunities, but nothing shows up on screen. Nothing shows up on screen. Can you help me diagnose what's wrong here? All the searching I've done leads to assistance with getting…
0
votes
2 answers

Microsoft CRM, 3 N:N subgrids pointing on the same entity in a form... add button missing

In a form I've 3 subgrids with N:N relation which point on the same entity (but don't display the same view). When I create only 1 of theses subgrids, I've correctly the addbutton and I can add records in my subgrids. But when I've more than 1…
0
votes
0 answers

jqgrid nested subgrid second subgrid not display

My first subgrid display good with my data. I try to display another subgrid into the first... but the subgrid not display... what's wrong ? Here is my entire code. I've not yet finished. $(document).ready(function(){ var dbbxll =…
leerickx
  • 84
  • 10
0
votes
1 answer

Jqgrid is empty, does not load json data from main grid

My subgrid only shows the column headers but not not load the json data from the main grid. The columns are empty. I followed the tutorial on JQuery Grid-SubGrid for Parent-Child relation but it does not work. This is my javascript code: …
Terry
  • 43
  • 1
  • 3
  • 10
0
votes
1 answer

Editing subrow - jquery easyui edatagrid

OK- I have been beating my head against this since last Friday, I figure it is finally time to post for help. I think I have my code fairly settled, and I think things should work. I have a grid where I edit the row, add rows, and then I expand the…
Jeff Bluemel
  • 476
  • 9
  • 22
0
votes
0 answers

Calculate value from subgrid in CRM

I need to make a plugin to recalculate all the Opportunity products from my subgrid on opportunity form. The new logic: I added 2 new custom fields on products : ONE TIME FEE & RECURRING FEE. These will be visible on the subgrid Products on the…
Letoir
  • 395
  • 7
  • 15
0
votes
1 answer

how to use sub grid results in another subgrid in CRM 2011

I got stuck in a situation where I have to deal with the following scenerio: I need to add some users for meeting using sub grid view , and the users I have selected for the meeting should needs to be available in my other sub grid section which is…
0
votes
2 answers

Dynamics CRM 2013 multi-entity sub-grid

I'm a new comer to Microsoft Dynamics CRM 2013 and I've self-learned in high-level to customise the CRM. I have created a custom entity called "Project" which have two 1:N relationships to Accounts and Contacts. In create form for Project, instead…
0
votes
1 answer

Dynamics crm 2011 get subgrid selected cell value

I need to get specific cell value from selected subgrid rows, i've foud a code to attach click event to the subgrid, but it retreive the name or ID fo the row, how to get the cells value?, the code i sue is below : function…
Jawad
  • 111
  • 2
  • 10
0
votes
2 answers

How to Update records of a Sub-grid in CRM 2013 using OData JSON JQuery

Below is my Product sub grid on Quote Entity. Now On addition of new product , I am calculating Service tax and tax based on Price per unit, quantity and discount. Now i need to set calculated service tax and tax value in sub grid. I want to Update…
User5590
  • 1,383
  • 6
  • 26
  • 61
0
votes
2 answers

Get subgrid control in onLoad event

I try to get subgrid control to set it's unvisible. Here my code function OnReady(){ var subgrid = document.getElementById("documents_subgrid"); if (subgrid == null) { setTimeout(OnReady(), 1000); return; } } This code works…
ernikoss
  • 63
  • 1
  • 2
  • 9