Created
May 10, 2013 10:38
-
-
Save attodorov/5553656 to your computer and use it in GitHub Desktop.
Ignite UI basic grid setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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