I am start working on Extjs with asp.net 2.0. If some one have used Extjs with asp.net 2.0 then please help me, how can i bind grid and all other control with SQL Server. Also provide me suggestion to use Extjs with asp.net 2.0
Please provide me link of all the site that can help me.
Thanks !!
Pradeep Kr. Sharma
Pradeep Kr. Sharma
http://vshelpdesk.blogspot.com/
Please Mark As Answer, which helped you. So that it might be useful for others.
Though extjs has a nice set of controls, it is a bit difficult to handle them directly in asp.net. You can try a thirdparty control set from coolite. Coolite ajax controls are asp.net controls built on top of extjs framework. They can be used to create
rich web 2.0 UI. you can try their examples at examples.coolite.com. It is easy to use the controls with different types of datasources.
Pradeep Kr. ...
Participant
1712 Points
294 Posts
How to use Extjs with asp.net 2.0
Jan 20, 2009 04:24 PM|LINK
Hi All,
I am start working on Extjs with asp.net 2.0. If some one have used Extjs with asp.net 2.0 then please help me, how can i bind grid and all other control with SQL Server. Also provide me suggestion to use Extjs with asp.net 2.0
Please provide me link of all the site that can help me.
Thanks !!
Pradeep Kr. Sharma
http://vshelpdesk.blogspot.com/
Please Mark As Answer, which helped you. So that it might be useful for others.
lucypriyadee...
Member
543 Points
143 Posts
Re: How to use Extjs with asp.net 2.0
Jan 21, 2009 04:41 AM|LINK
this links r deal with ExtJs and Asp.net,So hope this may help u
http://stackoverflow.com/questions/221273/returning-data-from-asp-net-to-an-extjs-grid
http://www.ruchitsurati.net/post/Coolite---ExtJs-For-ASPNET-20.aspx
http://rlieving.blogspot.com/2008/01/struggling-with-extjs-and-aspnet.html
http://extjs.com/forum/showthread.php?t=12901
sashekumar
Member
2 Points
3 Posts
Re: How to use Extjs with asp.net 2.0
Jan 21, 2009 05:53 AM|LINK
Hi,
The best option with asp.net that i can think of would be http://www.coolite.com/.
They have done a great job in wrapping extjs into asp.net webcontrols.
Regards,
Sashekumar
coolite
ahsanm.m
Contributor
5254 Points
781 Posts
Re: How to use Extjs with asp.net 2.0
Apr 26, 2009 10:24 AM|LINK
Hi ,
These two links help me to start extJs with asp.net 2.0. Hope that it will also help you:)
http://extjs.com/learn/Tutorial:EXTJS_Tree_Panel_with_ASP_NET
http://www.dottostring.com/2008/11/using-aspnet-textbox-as-extjs-form-textfield-with-clientside-validation-ubobtrusively/
Javascript extJs
DotnetBoss | asp.net boss
vimal raj
Member
6 Points
3 Posts
Re: How to use Extjs with asp.net 2.0
Jun 05, 2009 12:00 PM|LINK
Hi Pradeep,
Though extjs has a nice set of controls, it is a bit difficult to handle them directly in asp.net. You can try a thirdparty control set from coolite. Coolite ajax controls are asp.net controls built on top of extjs framework. They can be used to create rich web 2.0 UI. you can try their examples at examples.coolite.com. It is easy to use the controls with different types of datasources.
Hope this helps,
Happy Programming
Vimal Raj
www.techisolutions.info
Naresh1988
Member
2 Points
1 Post
Re: How to use Extjs with asp.net 2.0
Oct 01, 2010 01:40 AM|LINK
Please go on www.sencha.com/
web site where you can find turtorial on Extjs, YOI, GWT and Also download library
thilakmsc
Member
249 Points
168 Posts
Re: How to use Extjs with asp.net 2.0
Jul 07, 2012 04:37 AM|LINK
Here my code i don't what's wrong in that.
buttons: [{text:'Login',handler : function()
{
Ext.Ajax.request
({
url:
'Default.aspx?type=Login',
method:
'POST',
params:
{
action:
'new',
//modify date
Name:
'thilak'
},
waitMsg:
'Saving Data...',
success:
function(response)
{
var s = response.responseText;
var respon = response.responseText;
if(respon==1)
{
Ext.MessageBox.hide();
Ext.MessageBox.alert(
'Status','Logged In Successfully');
window.location =
'Login.php';
}
else
{
Ext.MessageBox.hide();
Ext.MessageBox.alert(
'Status','Log In Failed!');
}
}
});
}
}, {text:
'Reset'}]});
C# Code :
string action = Request.QueryString["type"];
if (action != string
.Empty)
switch
(action)
{
case "Login"
:
Response.ContentType =
"text/html"
;
Response.Write(1);
break
;
}
But in the i get a Response like :
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
Untitled Page
</title><link href="ExtJS/resources/css/ext-all.css" rel="stylesheet" type="text/css" /></head>
<body>
<form name="form1" method="post" action="Default.aspx?type=Login" id="form1">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE0MDkxNzYwNDNkZMqODl+2ksqIiQHUa9wayQUUyTs9"/>
</div>
<div>
<script type="text/javascript" language="javascript" src="ExtJS/adapter/ext/ext-base.js"></script>
<script type="text/javascript" language="javascript" src="ExtJS/ext-all.js"></script>
<script type="text/javascript" language="javascript" src="Scripts/default.js"></script>
</div>
</form>
</body>
</html>
Help :
I need to get only one(1) as result