IT Community - Software Programming, Web Development and Technical Support

create Editable label without postback

This is a discussion on create Editable label without postback within the ASP and ASP.NET Programming forums, part of the Web Development category; Hi all, I m using Editable Datagrid in which i want to edit the cost field with out postback.Can ...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > ASP and ASP.NET Programming

Register FAQ Members List Calendar Mark Forums Read
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 10-18-2007, 02:01 AM
shaalini shaalini is offline
D-Web Analyst
 
Join Date: Apr 2007
Posts: 342
shaalini is on a distinguished road
Default create Editable label without postback

Hi all,
I m using Editable Datagrid in which i want to edit the cost field with out postback.Can any one suggest how to implement the edit function without postback
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 10-18-2007, 02:07 AM
JSureshkumar JSureshkumar is offline
D-Web Sr.Programmer
 
Join Date: Feb 2007
Location: in someone's heart
Posts: 139
JSureshkumar is on a distinguished road
Send a message via Skype™ to JSureshkumar
Default Re: create Editable label without postback

Hi shaalini,
You Can use the anthem Datagrid to edit the field without postback. Anthem Datagrid contain UpdateAfterCallBack property or else u can use anthemext:EditLabel
__________________
J Suresh Kumar
Google Hacks
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-18-2007, 02:09 AM
nnraja nnraja is offline
D-Web Programmer
 
Join Date: May 2007
Posts: 94
nnraja is on a distinguished road
Default Re: create Editable label without postback

Hi
can u explain briefly about the anthemext:EditLabel
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-18-2007, 02:13 AM
satheesh satheesh is offline
D-Web Programmer
 
Join Date: Aug 2007
Posts: 95
satheesh is on a distinguished road
Default Re: create Editable label without postback

Hi JsureshKumar
Is anthemext:EditLabel can be editable in any place.whether this label can be used in all browser
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 10-18-2007, 02:18 AM
JSureshkumar JSureshkumar is offline
D-Web Sr.Programmer
 
Join Date: Feb 2007
Location: in someone's heart
Posts: 139
JSureshkumar is on a distinguished road
Send a message via Skype™ to JSureshkumar
Default Re: create Editable label without postback

Hi
The EditLabel is a Label that can be edited in place. If you are using Internet Explorer, then you can literally edit in place. If you are using any other browser, then the label is replaced by a textbox to allow editing and then back to a label when you are done editing.

example:
<anthemext:EditLabel ID="EditLabel2" runat="server" OnEdit="EditLabel2_Edit" Text="Click Me!"
OnSave="EditLabel2_Save" Font-Italic="True" TextDuringCallBack="Wait..." PreCallBackFunction="pre"
PostCallBackFunction="post" />
function pre() {
var loading = document.createElement("div");
loading.id = "loading";
loading.style.color = "black";
loading.style.backgroundColor = "red";
loading.style.paddingLeft = "5px";
loading.style.paddingRight = "5px";
loading.style.position = "absolute";
loading.style.right = "10px";
loading.style.top = "10px";
loading.style.zIndex = "9999";
loading.innerHTML = "busy...";
document.body.appendChild(loading);
}
function post() {
var loading = document.getElementById("loading");
document.body.removeChild(loading);
}
__________________
J Suresh Kumar
Google Hacks
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/asp-asp-net-programming/4126-create-editable-label-without-postback.html
Posted By For Type Date
ASP and ASP.NET Programming [Archive] - Page 2 - DiscussWeb IT Community - Technical Support and Technology Discussions This thread Refback 02-22-2008 04:51 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to populate items to Drop downlist without postback? KiruthikaSambandam ASP and ASP.NET Programming 4 10-11-2008 08:39 PM
DropdownList in Editable Datagrid shaalini ASP and ASP.NET Programming 3 10-26-2007 06:07 AM
How to Create the TabControl form in asp.net without postback bluesky ASP and ASP.NET Programming 3 10-22-2007 04:00 AM
How can i maintain page scroll position after a postback ASP.NET 2005? a.deeban ASP and ASP.NET Programming 1 08-22-2007 10:24 PM
How to postback the checkbox value in treeview when each time it is checked ? bluesky ASP and ASP.NET Programming 0 07-16-2007 12:24 AM


All times are GMT -7. The time now is 09:05 AM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0