Skip to content

Instantly share code, notes, and snippets.

@attodorov
Created May 10, 2013 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save attodorov/5553656 to your computer and use it in GitHub Desktop.
Save attodorov/5553656 to your computer and use it in GitHub Desktop.
Ignite UI basic grid setup
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" type="text/css"></link>
<link rel="stylesheet" href="css/themes/infragistics/infragistics.theme.css" type="text/css"></link>
<link rel="stylesheet" href="css/structure/infragistics.css" type="text/css"></link>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="js/infragistics.core.js"></script>
<script type="text/javascript" src="js/infragistics.lob.js"></script>
<title>Basic IgniteUI grid setup </title>
</head>
<body>
<script type="text/javascript">
$(function () {
$("#grid1").igGrid({
});
});
</script>
<table id="grid1"></table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment