Multi Master Detail Fancy

QuestionsMulti Master Detail Fancy
Frederik asked 10 years ago

Hello, how can i have multiple columns with detailed grid ?(I'm able to have one master and one detail grid)
Reference: Master Detail Fancy demo

3 Answers
Abu Ghufran answered 10 years ago

When you click a row in master, all detail grids are updated (refreshed).

Now when we integrate it with fancy box, we make all detail grid's div hidden by default, and on clicking certain link in master, we display.particular div of detail grid. So to integrate same in multi detail grid, make all multi detail grid's div hidden by default, and on clicking some link in master column, you can unhide specific div.

You can refer master multi detail sample, demos/master-detail/master-multi-detail.php.
And for fancy box integration, demos/master-detail/master-detail-fancy.php

Frederik answered 10 years ago

Thanks for you answer, i saw the example, but i want the details grids popup like master fancy detail.

So if i define two detail grid like:

$col = array();
$col["title"] = "Alerts";
$col["name"] = "detail";
$col["default"] = "<a class='fancybox' style='text-decoration : underline;' onclick='jQuery("#list1").setSelection({id});' href='#box_detail_grid'>View<br>Details</a>";
$col["width"] = "10";
$col["editable"] = true;
$col["search"] = false;
$col["export"] = false;
$col["align"] = "center";
$cols[] = $col;

$col = array();
$col["title"] = "Transactions";
$col["name"] = "transac";
$col["default"] = "<a class='fancybox' style='text-decoration : underline;' onclick='jQuery("#list1").setSelection({id});' href='#box_detail_grid'>Transactions</a>";
$col["width"] = "10";
$col["editable"] = true;
$col["search"] = false;
$col["align"] = "center";
$cols[] = $col;

They will call the same detail grid (the first defined).
So, how to specify the detail grid to show?

Frederik answered 10 years ago

Solved. Thanks!

Your Answer

2 + 6 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?