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 ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| 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 |
| Sponsored Links |
| |||
| 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 ![]() |
| |||
| 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 ![]() |
![]() |
| Thread Tools | |
| Display Modes | |
| |
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 |