Ajax DataGrid Support Product Page
Answered
Show image in lightbox
Asked 17 Mar 2013 15:06:16
1
has this question
17 Mar 2013 15:06:16 manuel pinto posted:
I've got my ajaxdatagrid showing images, but i wish to onclick shows a bigger picture. Images are in database with fullpath (a small and a bigger). I wish to onclick show the bigger image. Just like in your Facebook Christmas Catalog DemoThanks in advance
Replies
Replied 17 Mar 2013 18:49:08
17 Mar 2013 18:49:08 manuel pinto replied:
Another question: How about clicking on cell and go to the detail page i have created? Here's the link: www.festas-academicas.com/pt/queimas/ajaxdatagrid_test.php
The problem here is that clicking on cell "titulo" it goes always to the same record (number 1)
The problem here is that clicking on cell "titulo" it goes always to the same record (number 1)
Replied 18 Mar 2013 08:20:45
18 Mar 2013 08:20:45 Teodor Kuduschiev replied:
Hi Manuel,
In order to go to the specific record id you need to use the following go to url address:
Where {0} is the number of the column that stores your IDs. If it is the firs column please use {0}, if it is the second column -> {1}, if it is the third -> {2}...etc
In order to go to the specific record id you need to use the following go to url address:
http://www.festas-academicas.com/pt/queimas/cartazes_queimas_detail.php?id_cartazes={0}
Where {0} is the number of the column that stores your IDs. If it is the firs column please use {0}, if it is the second column -> {1}, if it is the third -> {2}...etc
Replied 18 Mar 2013 10:40:03
18 Mar 2013 10:40:03 manuel pinto replied:
Perfect!!! Thanks