Web Forms :: Inline Editing On A Webpart?

Jan 16, 2011

Is in-line editing possible on a webpart??I would like to enable a user to directly edit text within a webpart, without a postback and without launching its editor.Can someone show me how this would be done? How would I save the content using a callback?

View 2 Replies


Similar Messages:

Forms Data Controls :: Inline Editing Using Gridview And Ajax?

Sep 10, 2010

Is there a code example out there that shows inline editing using the Gridview and using Ajax?

View 4 Replies

Forms Data Controls :: Gridview Concerning Selected Rows And Inline Editing?

Dec 18, 2010

Using a gridview with paging, sorting, inline editing, and selection enabled. I noticed the following:1. after selecting a row, then sorting, the selection sticks to the position in the grid, rather than the actual data. I would have expected it to either stick with the data, or clear the selection so nothing is selected. I would just assume clear the selection rather than have it actually change, like it is now. When a row is selected, I'm showing detail information about that specific row below the grid, so when a user does this, then sorts, the selected row changes and the new selected row's detail info shows below the grid. How should I go about stopping this? Hook into the gridview's Sorting event and set the selected row back to -1 (for nothing selected)? I assume that would work but I was compelled to post anyway to see if there is something else I should be doing...

2. I have not tested yet, but I assume the same thing would happen when paging occurs?3. another issue I'm having is when a user enters into edit mode for a row. This also does not clear a previous selection, so if a user had first selected a row, which shows the detail info for that row below the grid, then they hit the edit button for a different row, now on screen at the same time is a selected row (visible by selectedRowStyle), it's detail info below, and a completely different row in edit mode... this is a very confusing scenario for a user. I either need to ensure that any selection is cleared once in edit mode, OR sync these up so that the row in 'edit' mode also becomes the selected row... what do you guys/gals normally do for this situation? I'm thinking syncing up so that the row in edit mode is also selected sounds preferable... how would I do that?

View 2 Replies

Forms Data Controls :: Gridview Inline Editing Not Returning Updated Value But Prior Value?

Jun 14, 2010

I have been struggling with this and it must be somthing I am missing. I have Griview and go to edit te row and when I click update and step through the rowupating procedure the value for CollectAmtEdit and txtCollectDate give te old values. If I do not bind them originally then they return blanks after I enter data in them. Here is the form Logic:

[Code]....

Code behind:

[Code]....

View 1 Replies

Web Forms :: Deployed Project Not Showing Webpart Verb Tool Bar (minimize, Close Buttons Of WebPart)

Jan 4, 2011

I am just started development in ASP.NET.

I have created one sample application for WebParts. It is working fine when I run it from Visual Studio or local environment.

But when, I have publish file in IIS virtual directory (in my PC or same PC) at that time it is stop showing Verb tool bar (minimize, close buttons of WebPart).

View 1 Replies

JQGrid Inline Editing - Filter Subcategory Dropdown List Based On Another Category Dropdown

Jul 9, 2010

I have a category and a subcategory column in a Jqgrid. I have enabled inline editing, both category and subcategory are dropdownlists columns (edittype:'select'). I need to filter the subcategory list based on the selected category. I wonder how can I acheive this functionlity? I tried the below event but its not working for me

afterEditCell: function(rowid, celname, value, iRow, iCol) {
//to do here
}

the above event doesn't get fired. my all column are editable

View 1 Replies

C# - Reload The Information Of The Sharepoint 2007 Webpart After A Button Is Clicked From Another Webpart?

Dec 29, 2010

I am new in sharepoint development. I have 2 webparts attached on a page. The first webpart (MyTestingWebpart1) basically it does only inserting of data and the other webpart (MyTestingWebpart[2]) displays the records from the database. Now my problem is when I try to click on the save button, somehow I don't know how to refresh the webpart that displays the newly inserted record. Is this possible?

I have added a query at the page load event of MyTestingWebPart[2]. Both of the webparts attached are web user controls.

View 2 Replies

Place DataBinding Inline Code Inside Of Inline C# Code?

Jul 28, 2010

How can I achieve the desired effect?

Here's the code:

<% if(!String.IsNullOrEmpty(%><%#Eval(Container.DataItem,"OrderXml");%><%)){ %>

etc., which is placed inside of an ItemTemplate inside of a TemplateColumn. In the CodeBehind page I will bind a value to the OrderXml field, which occasionally is NULL.

Unfortunately I get compilation errors.

View 1 Replies

Web Forms :: WebPart Drag And Drop?

Feb 17, 2011

I cannot get the Drag and Drop functionality of Web Parts is to work. I have a very simple test page with two WebPartZones.. In the OnInit method of the code behind I put the page in design mode. In the first zone I have a textbox.At runtime the text box renders as a web part. When I hover over the web part header my mouse pointer changes the 'move' pointer, but I cannot drag the item. I do not see it dragging and the part never moved. I am using Visual Studio 2010 with IE 8. I have tried IE8 in compatibility mode and regular mode. The results are the same. Here is the markup from my test page:

<form id="form1" runat="server">
<div>
<asp:WebPartManager ID="WebPartManager1" runat="server">
</asp:WebPartManager>
<asp:WebPartZone ID="LEFT" runat="server">
<ZoneTemplate>
<asp:TextBox ID="tb" runat="server" />
</ZoneTemplate>
</asp:WebPartZone>
aa
<asp:WebPartZone ID="RIGHT" runat="server">
</asp:WebPartZone>
aa
<asp:EditorZone ID="EditorZone1" runat="server">
</asp:EditorZone>
</div>
</form>

Here is the code behind:

protected override void OnInit(EventArgs e)
{
base.OnInit(e);
WebPartManager mgr = WebPartManager.GetCurrentWebPartManager(this);
mgr.DisplayMode = WebPartManager.DesignDisplayMode;
}

What am I missing?

View 2 Replies

Web Forms :: How To Set Background Color Of Webpart

Feb 15, 2011

I am trying to set different backgroundcolor of each webpart title. But unable to do that.

View 1 Replies

Web Forms :: WebPart Feature For Administrators Only

Mar 5, 2010

I need to set the webpart to administrators only. How can I allow only shared scope. User scope is not allowed even for administrators.

View 1 Replies

Web Forms :: How To Add Button (Verb) To WebPart

Jan 13, 2011

I seen some posts, some MSDN Materials...uh...Basically what i observed is every is creating a user control and adding it tot the web part..

I had a doubt that can we add button directly to the webpart in the title Zone? If yes how?

provide a simple example for adding custom verbs to the WebPart.

View 1 Replies

Web Forms :: Single Instance Of A Webpart

Mar 12, 2010

Is it possible to restrict users from adding more than one isntance of a webpart on a page?

View 1 Replies

Web Forms :: In Webpart Getting Only Browse Mode?

Apr 13, 2010

I have written the code for webpart in my VS 2005 and i am getting all the mode like(Browse,Desing,Edit etc..)but when i put that wesbite in my local IIS , and when run it i am getting only the browse optionbelow is the for loop code

[Code]....

tell what is the problem, in my vs 2005 enviorment i am getting all the option, but in local IIS i am getting only browse option

View 1 Replies

Web Forms :: Gridview Inside Webpart In C#?

Jan 1, 2010

I am trying to read the data from XMLDataSource into a gridview (in asp.net). It works when I perform below logic:

Dim ds As New DataSet()
ds.ReadXml(Server.MapPath("LoadData.xml"))
GridView1.DataSource = ds.Tables(0)
GridView1.DataBind()
and I hardcoded the resultant hyperlinks inside the GridView with some name using the following exp: (and it works).....

But when i embed the griview inside a webpart , configure the datasource, I am not able to read the data from the XMLDataSource. I get the following error: The DataSourceID of "GridView1" must be the ID of a control of type IDataSource. A control with ID "XMLDataSource1" could not be found.

View 3 Replies

Web Forms :: Cannot Get Dynamic Webpart Data

Apr 7, 2010

I get a problem in rendering dynamic webpart data. Firstly, I add a user control as webpart to a WebPartZone control by WebPartMnager.AddMethod() And then, it returns a WebPart object (adding method OK) -> No problem here it also shows the user control on my page. Everything look like perfect. aspnet_Paths and aspnet_PersonalizationAllUsers table also have data -> No problem here

You can see this photo : [URL] However, when I re-start browser or re-load my current page (ctrl + F5) then the user control which I added is disappear. You can see this photo : [URL]....................

View 6 Replies

Web Forms :: Adding Webpart Dynamically?

Mar 27, 2011

I have a custom webpart which i am adding to webpartzone dynamically.., in the custom webpart am loading a usercontrol which has Gridview in it with data. On the page load it is working fine, when i click the paging button of the gridview , then nothing is visible on the page...

View 4 Replies

Web Forms :: WebPart - Smooth Transition Between Zones?

Jan 12, 2011

I would like to achieve a nice smooth transition when the user moves controls between the WebPartZones similar to how iGoogle implements it. I've not yet been able to achieve this - the transition is very jumpy and not very smooth (I cannot use SilverLight).

Has anybody achieved this using WepPartZones without the use of SilverLight?

View 1 Replies

Web Forms :: Minimize WebPart ChromeState On Page_Load ?

Jan 5, 2010

I just have one quick question concerning WebPart ChromeStates; we have several WebPartZones in a page. Management now has this requirement: all webpart chromestates should be set to Minimized on Page_Load, whatever the last saved state is. In fact, it
is better that it doesn't remember it's saved state at all. Problem is, if we close the page with one or more WebPartZones ChromeState set to Restore / Normal, the next time the page is loaded, it remembers those states. We just wanted it to be minimized
on each page load.

We have already set profile AutoSaveEnabled to False, set each WebPart ChromeState to Minimized on each Page Load via code-behind, Reset Personalization Settings on each page load, and all other things I have researched in the forums, yet, it still retains.it's last state upon browser close. We use IE 6 exclusively, and we are not allowed to upgrade to 7 or 8.

View 2 Replies

Web Forms :: WebPart With Pager - Page Won't Load

May 3, 2010

I have a similar scenario. Sharepoint --> Ascx Control Webpart --> ListView w DataPager. The thing is, when I use the QueryStringField everything works ok. The Pages, clicks, etc... The problem is that when you use QueryStringField(QSF) it reloads all the page when you navigate through pages (this is because it builds different urls using the QSF). Everything ok until now.

As I have other webparts in the same page that interact with this one, I don't want a full render of the page because the other webpart reloads entirely. So, if I take out the QSF the link to pages appear but when I click on them they won't load.

View 1 Replies

Web Forms :: How To Control The Title / Border And Others In A Webpart

Feb 7, 2011

how can I control the border ( currently it displays thin-line border) and control the display of heading (currently it display 'untitled') and other similar features.

<asp:WebPartManager ID="WebPartManager1" runat="server">
<Personalization Enabled="False" />
</asp:WebPartManager>
<asp:WebPartZone ID="WebPartZone1" runat="server" BorderColor="#CCCCCC"
Font-Names="Verdana" Padding="6">
<EmptyZoneTextStyle Font-Size="0.8em" />
<PartStyle Font-Size="0.8em" ForeColor="#333333" />
<TitleBarVerbStyle Font-Size="0.6em" Font-Underline="False" ForeColor="White" />
<MenuLabelHoverStyle ForeColor="#D1DDF1" />
<MenuPopupStyle BackColor="#507CD1" BorderColor="#CCCCCC" BorderWidth="1px"
Font-Names="Verdana" Font-Size="0.6em" />
<MenuVerbStyle BorderColor="#507CD1" BorderStyle="Solid" BorderWidth="1px"
ForeColor="White" />
<PartTitleStyle BackColor="#507CD1" Font-Bold="True" Font-Size="0.8em"
ForeColor="White" />
<ZoneTemplate>
<site:AboutUs ID="AboutUSControl" runat="server" />
</ZoneTemplate>
<MenuVerbHoverStyle BackColor="#EFF3FB" BorderColor="#CCCCCC"
BorderStyle="Solid" BorderWidth="1px" ForeColor="#333333" />
<PartChromeStyle BackColor="#EFF3FB" BorderColor="#D1DDF1" Font-Names="Verdana"
ForeColor="#333333" />
<HeaderStyle Font-Size="0.7em" ForeColor="#CCCCCC" HorizontalAlign="Center" />
<MenuLabelStyle ForeColor="White" />
</asp:WebPartZone>

View 3 Replies

Web Forms :: Change Webpart List In DeclarativeCatalogPart?

Sep 28, 2010

When users choose webpart, I want different users have different choices.

For example, User A can see Webpart A in the catalog,

User B can see WebPart B in the catalog.

How to write code for this?

View 1 Replies

Web Forms :: Disabling WebPart Checkbox In DeclarativeCatalogPart?

Jan 18, 2011

I have read through a number of posts but cannot find solution to my requirement. I need

1. Use DeclarativeCatalogPart to list ALL my webparts. I do not want to use PageCatalogPart because I want the user to always see ALL web parts available in the catalog, regardless if they are closed or not.

2. Disable the checkbox in DeclarativeCatalogPart for the WebParts that already exist on the page.

I wrote all the code to determine if WebPart exists, but I cannot figure out how to get access to that checkbox next to each WebPart.

View 1 Replies

Web Forms :: Get Webpart Underlying Control And Add It To Panel

Aug 12, 2010

[Code]....

I get the error : Cannot modify the controls collection of a GenericWebPart. To create a new GenericWebPart, use the WebPartManager.CreateWebPart() method

View 3 Replies

Web Forms :: WebPart Personalization Resetting/Getting Lost

Mar 25, 2010

I have spent days trying to research this to figure out what is going on. I tried changing most of the settings in IE8 (both users are using IE8 but I have no idea if it does it IE7 or Firefox too) , logging in and out as different users, closing, opening, deleting internet files, and it won't break. They have the site in the Trusted Sites list. They don't have trouble with it dropping their Forms Authentication either, so it isn't losing authentication.The admin user suggested it had something to do with her having multiple tabs and sessions open. But I tried all of that, and it never broke. I have seen erratic behavior on occasion if a rogue IE8 process doesn't exit properly

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved