jQuery技术

a href Columns In Grid in JQuery

字号+ 作者:H5之家 来源:H5之家 2015-11-14 18:25 我要评论( )

a href Columns In Grid in JQuery,Wewillmakeoneofthecolumnsvaluestoahreftag.Firstwewillloadthegridfromtheacustomjsondataandthenwewillusecellsrendererfu

We will make one of the columns values to a href tag. First we will load the grid from the a custom json data and then we will use cellsrenderer function to format the columns values. I hope you will like this.

Please see this article in my blog here .

Background

We all works in grid controls. Sometimes you may need to customize the grid and its column values. Here I am giving you custom demo of the same. In this article we are going to customize the grid column contents to a href tags.

Using the code

To show this demo, I am using jQWidget jQX Grid control. If you are new to jQX Grid, you can find out some introduction here: jQWidget JQX Grid

Now we are going to load the grid first. I hope you have already checked how to load the grid. Please see the below code.

Create an HTML page

<!DOCTYPE html> <html lang="en"> <head> <title>Href Columns In Grid - Sibeesh Passion</title> </head> <body> <h3>Href Columns In Grid - Sibeesh Passion</h3> <br /> <div></div> </body> </html>

Add the needed references

<script src="jquery-1.9.1.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdata.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdropdownlist.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxmenu.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.filter.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.sort.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.selection.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.pager.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.columnsresize.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.columnsreorder.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.export.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdata.export.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdatatable.js"></script> <link href="JQXItems/jqwidgets/styles/jqx.base.css" />

Here comes the main part.

Grid Settings or Grid Initialization

<script type="text/javascript"> $(document).ready(function() { var columntohref = function(row, column, value) { if (value.indexOf('#') != -1) { value = value.substring(0, value.indexOf('#')); } var format = { target: '"_blank"' }; var html = $.jqx.dataFormat.formatlink(value, format); return html; } var data = { datatype: "json", datafields: [ { "name": "LinkName", "type": "string" }, { "name": "Link", "type": "string" }], url: "CustomData.txt" }; $("#jqxgrid").jqxGrid( { source: data, columns: [ { "text": "LinkName", "dataField": "LinkName", width: "300" }, { "text": "Link", "dataField": "Link", cellsrenderer: columntohref, width: "300" }] }); }); </script>

Sample data

Following is the contents of CustomData.txt

[{ "LinkName": "Sibeesh Passion", "Link": "http://www.sibeeshpassion.com" }, { "LinkName": "C-Sharp Corner", "Link": "http://www.c-sharpcorner.com" }, { "LinkName": "Facebook", "Link": "http://www.fb.com" }, { "LinkName": "Google", "Link": "http://www.google.com" }]

As you can find out in the above code we are using cellsrenderer property to call the functioncolumntohref which does the formatting. We are formatting the data as below,

$.jqx.dataFormat.formatlink(value, format)

Shall we check our output now?

Output


a href Columns In Grid in JQuery


Column values to a href

Complete Code

<!DOCTYPE html> <html lang="en"> <head> <title>Href Columns In Grid - Sibeesh Passion</title> <script src="jquery-1.9.1.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdata.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdropdownlist.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxmenu.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.filter.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.sort.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.selection.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.pager.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.columnsresize.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.columnsreorder.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxgrid.export.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdata.export.js"></script> <script type="text/javascript" src="JQXItems/jqwidgets/jqxdatatable.js"></script> <link href="JQXItems/jqwidgets/styles/jqx.base.css" /> <script type="text/javascript"> $(document).ready(function() { var columntohref = function(row, column, value) { if (value.indexOf('#') != -1) { value = value.substring(0, value.indexOf('#')); } var format = { target: '"_blank"' }; var html = $.jqx.dataFormat.formatlink(value, format); return html; } var data = { datatype: "json", datafields: [ { "name": "LinkName", "type": "string" }, { "name": "Link", "type": "string" }], url: "CustomData.txt" }; $("#jqxgrid").jqxGrid( { source: data, columns: [ { "text": "LinkName", "dataField": "LinkName", width: "300" }, { "text": "Link", "dataField": "Link", cellsrenderer: columntohref, width: "300" }] }); }); </script> </head> <body> <h2>Href Columns In Grid - Sibeesh Passion</h2> <div></div> </body> </html>

Conclusion

Did I miss anything that you may think which is needed? Could you find this post as useful? I hope you liked this article. Please share me your valuable suggestions and feedback.

Your turn. What do you think?

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 全面详细的jQuery常见开发技巧手册

    全面详细的jQuery常见开发技巧手册

    2016-02-26 10:02

  • jquery——彩色投票进度条

    jquery——彩色投票进度条

    2015-11-25 10:03

  • 锋利的jquery学习之二

    锋利的jquery学习之二

    2015-11-18 15:45

  • 【译】前端开发者都应知道的 jQuery 小技巧

    【译】前端开发者都应知道的 jQuery 小技巧

    2015-11-16 11:14

网友点评
c