Questions tagged [aspxgridview]

ASPxGridView is usually in reference to the ASPxGridView provided by DevExpress. It's one of the prime products offered by DevExpress Inc. in support of ASP.Net WebForms.

779 questions
2
votes
1 answer

DevExpress ASPxGridView asp.net Grid doesn't show data after Enabling ScrollBars

I'm new user for AspxGridView for DevExpress ... Please if someone's using ASPxGridView, describe me why after enabling scroll bar the grid hides all data even columns headers and rows. I can't make the width stay as the value I put except enabling…
Khaleel Hmoz
  • 987
  • 2
  • 13
  • 24
2
votes
1 answer

how to add my excel gridview to my aspxgridview and save in sqlserver?

protected void btnUpload_Click(object sender, EventArgs e) { string query = "SELECT * FROM [Sheet$]"; OleDbConnection conn = new OleDbConnection(ConStr); if (conn.State == ConnectionState.Closed) { conn.Open(); …
kaziveh
  • 57
  • 8
2
votes
3 answers

devexpress gridview filter solution

I have a devexpress gridview within my asp.net page which has a filter row. The built-in feature needs me to filter the from the first letters not the letters in between. So "Sa" would find "Samuel" but not "Uncle Sam". To search using for the…
bose
  • 21
  • 1
  • 3
2
votes
4 answers

Making a single row of an aspxGridView flash

Is there any way of making a single row within an AspxGridView flash different colours based on a value within a cell. E.g. continually changing the background colour of the row between red and green if a value in a cell is 5 so that it stands out…
tony
  • 309
  • 7
  • 23
2
votes
3 answers

Performing Delete operation in GridView control in ASP.NET when a Edit Operation takes place at the same time

Currently I am using the which is the standard way to perform Editing in a GridView control. But this allows me to perform only one operation at a time.In my application when one value of one field changes , when user clicks on "Update". Rows…
2
votes
2 answers

Retrieve values from custom form in ASPxGridView

I have a custom edit form made for ASPxGridView but have a big problem retrieving the values when inserting. The template: Company Name: Company Mail:…
Eric Herlitz
  • 25,354
  • 27
  • 113
  • 157
2
votes
2 answers

Show header and footer of gridview even when gridview is empty and show no records message in empty gridview

Basically I have a gridview with 2 columns (id, years). When there is no data for the source of this gridview, I want to show header and footer rows and inside the gridview, a message will be displayed to the user (NO RECORDS FOUND). I have already…
2
votes
0 answers

How do I retrieve all data from Firebase realtime database in c# asp.net in aspx page table?

Here's the code: protected async void Page_Load(object sender, EventArgs e) { int i = 1; client = new FireSharp.FirebaseClient(config); for (int row = 0; row < 2; row++) { …
2
votes
1 answer

Pre-fill vaule when adding new row in ASPxGridView

I got this ASPxGridView which is populated by a LinqServerModeDataSource. What I want to do is when creating a new row one (or more) of the fields should have their values generated by code-behind. I figured something like protected void…
Eric Herlitz
  • 25,354
  • 27
  • 113
  • 157
2
votes
1 answer

Using Javascript, why are all the values coming up null from multiple dropdowns in ASP.Net grdiview

This is my first time working with ASP.Net...I don't understand some of the things that are happening, but what is going on is that I have a asp.net gridview template that has a dropdown, a checkbox, text, and then a value all in one row. There are…
Stacie
  • 306
  • 7
  • 26
2
votes
1 answer

Calculate GroupSummary Value programmatically in DevExpress

In my code; I calculate 3 GroupSummary value with ASPxGridview;
Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
2
votes
2 answers

How to update devexpress gridview data column value automatically if condition is met?

I need to update devexpress gridview data column value automatically if condition is met. I tried to implement it using HtmldatacellPrepared but there is error at line e.GetValue("Status") = "Delay" : Expression is a value and therefore cannot be…
Vanquisher
  • 35
  • 8
2
votes
0 answers

Dynamically created button appearing on the bottom of the page

I am currently working on website/blog/shop in asp.net. I have problems with shop. After I successfully add items to basket and go to page that is supposed to display items via GridView buttons column is not appearing at all and buttons are showing…
2
votes
1 answer

Dynamic Controls gets lost durig Postback inside GridView in asp.net C#

I'm facing a very common issue and I've tried almost every solution but none of them solved my problem. I've created a Grid View and I want it to have dynamic columns. Four columns among them must have some controls(textbox,label and checkbox) so…
Rohit Singh
  • 75
  • 3
  • 16
2
votes
2 answers

Global Variable loses its value after page index changed in DataGrid

My problem is losing value.I have a DataGrid with standart asp.net pagination. When I change page index, global variable named "id" loses its value. Help me Please. int id = 0; void Payments() { radioBtnList = GetData(); …
coci
  • 21
  • 1
  • 5
1 2
3
51 52