在网页中显示单个记录的最佳方式是什么?
我有一个主/详细表格。 我有一个用于详细信息的 jquery 网格,工作正常。 我不知道如何显示主单记录。 我不想使用 html 表。 也许只是一个样式列表?
我总是被 webforms 中的 ASP.NET 控件宠坏了,以至于我不知道这类事情有什么好的做法。 如果重要的话,我正在使用 PHP 和 CodeIgniter。 在表格之外(那是来自旧的经典 asp,当我手动完成所有操作时),我只能想到一个列表,该列表使用数据库中的正确数据包装 php 标签。 我不知道我想使用 jquery 作为主部分。
例如,目前我的观点是:
<?php foreach ($search_result->result() as $row):?>
<div class="post">
<h1 class="title">
<?=$row->product_name?></br>
<?=$row->product?></br>
<?=$row->description . '/' . $row->price . ' - ' . $row->tax?>
</h1>
<div class="entry">
<?=anchor('products/getproducts/' . $row->productid, 'Products\'s Information')?>
</div>
</div>
<?php endforeach;?>
我可以将它们包装在一些具有 ID 和名称的 html 标签中,这样当我按下它们上的按钮时,网格就会抓取这些值来填充我的网格。
I have a master/detail form. I have a jquery grid for the detail, works fine. I'm not sure how to display the master single record. I don't want to use an html table. Just a styled list maybe?
I've was always so spoiled with asp.net controls in webforms that I don't know any good practices for this sort of thing. I am using PHP and CodeIgniter if that matters. Outside of tables (that was from old classic asp, when I did everything manually), I can only think of a list that wraps php tags with the proper data from my database. I don't know that I want to use jquery for the master part.
For example, at the moment I have this in my view:
<?php foreach ($search_result->result() as $row):?>
<div class="post">
<h1 class="title">
<?=$row->product_name?></br>
<?=$row->product?></br>
<?=$row->description . '/' . $row->price . ' - ' . $row->tax?>
</h1>
<div class="entry">
<?=anchor('products/getproducts/' . $row->productid, 'Products\'s Information')?>
</div>
</div>
<?php endforeach;?>
I could wrap those in some html tags that have ID and names, so that when I press a button on them the grid grabs those values to populate my grid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然而,它对用户来说是最有利的……
样式列表简单、干净,并且只要适合您就可以呈现您需要的内容。
However it is most beneficial to the user...
A styled list is simple, clean, and presents what you need as long as it works for you.