i search for gridview user control opensource that allow me to set tabename then its how tabe data and allow adding new row edit delete row , i searched online and didn't find any .
Thank you
If you're doing Silverlight you can have a free gridview from DevExpress, http://www.devexpress.com/products/net/controls/silverlight/grid/
For WinForms there is SourceGrid in CodePlex, http://sourcegrid.codeplex.com/
For ASP.NET, try webgrid, http://www.webgrid.com/
There's also this SO post with a pretty good list of free controls (grids included): Best Free Controls for .NET
U can use Obout Grid Controls.............
http://obout.com/inc/download.aspx..these are the best controls i have seen u can do any changes u want, the download come with tutorials two....
u can check this link before u download...
http://www.obout.com/grid/grid_default_values_for_add.aspx
Not a .net version but you can use the same javascript from this script http://www.amitpatil.me/add-edit-delete-rows-dynamically-using-jquery-php/
Related
I hav a repository TextEdit And Repository Button Edit in NavBar of Devex. I want to set AutoComplete Source of any one of them. Is there anyway i can accomplish that.
Please Help Me. Thanx in Advance
Note: I am using Devex in WinForms.
For the AutoComplete feature, you need to use ComboBoxEdit. The ComboBoxEdit.Properties.AutoComplete property enables it.
So my question is this, I have a gridview that filters data from a database when a search keyword is entered. The problem is, that I need it to show some 20 different fields, which is significantly too long for a web page. The gridview goes beyond my asp.net webpage width and off of it. I was wondering if there was any way I could make it neater and easier to read, or fit all the data fields on one page. I'm not too familiar with this, so excuse my lack of know-how in and thank you in advanced.
A few suggestions:
Show fewer fields.
Make your columns really narrow.
Make your grid a header row only (contains only minimal info for a record). Clicking a link in a row will display further details for that item.
Use a DataList, Repeater or ListView so you can layout the row yourself.
You can try something like this:
http://weblogs.asp.net/dwahlin/archive/2007/07/31/freeze-asp-net-gridview-headers-by-creating-client-side-extenders.aspx
I think this thread on another site addresses exactly what you're asking:
http://forums.asp.net/t/1277793.aspx/1
The source of my problem is my lack of experience with asp.net. I'm trying to display my videos in database as a html like table. Much like the main page of youtube or other video sharing websites.
To give more detail, I need to display small pictures that are linked to watch.aspx that are concerned of duration, name, users, and the thumbnail of the video.
Right now I'm creating a dynamic html table on the codebehind (programmatically creating href, div, img etc.. tags), resulting unnecessary more coding, a hard way to edit the design, less flexibility.
I know there are some nice controls that are being used in asp.net like gridview etc.. But I'm not experienced to select which or how to use.
Am I doing it the right way, or should I make them user controls, or use something like gridview, datalist, datatable?
More spesific, what is the best way to create the main page or search page of youtube on asp.net?
to give you a hint; this is what I'm asking about:
You may use DataList - ASP.NET Server control and set RepeatColumns=n property to display n columns per row.
DevExpress controls are also very good .... here is the link to their asp.net controls http://www.devexpress.com/Products/NET/Controls/ASP/
When using the core ASP.NET 3.5 (w/ Ajax), is it possible to include a LinkButton in a tooltip?
Unfortunately, these tooltips are generated on-the-fly within a GridView to display custom data from each row. Tooltips are currently showing using jQuery.
So, I don't know how to add a LinkButton (for a "Modify" action) to call a method on code-behind.
Maybe I'm going the wrong way... Any suggestions?
Thank you!
UPDATE : Seems like a Server side control Implementation : http://devarchive.net/advanced-tooltip-control-asp-net-ajax.aspx
There is no direct way to do this. You can find some plugins in JQuery which helps to do this. Try the one #Andre Hühn provided. This one also looks good : http://jquery.bassistance.de/tooltip/demo/
I want to make a control that show list of bounded data like in grid view but I want to be able to insert new record from the same control
what is the best asp.net control I can use to do that (GridView , FormView or DetailsView)? and why?
Thanks in Advance
You can do that with all three. If you want to know how, there are some good tutorials on the official ASP.NET website, here.
The choice between them is a formatting/layout decision. A GridView produces a table, showing multiple records, while a DetailsView shows one at a time. A FormView lets you display the data however you want, but required much more effort, since you have to provide the HTML.